diff --git a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/classes/ComponentResource.html b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/classes/ComponentResource.html index 80f8bf00310e..121cf5de1bba 100644 --- a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/classes/ComponentResource.html +++ b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/classes/ComponentResource.html @@ -1,8 +1,8 @@ -ComponentResource | @pulumi/pulumi - v3.242.0
@pulumi/pulumi - v3.242.0
    Preparing search index...

    Class ComponentResource<TData>

    ComponentResource is a resource that aggregates one or more other +ComponentResource | @pulumi/pulumi - v3.243.0

    @pulumi/pulumi - v3.243.0
      Preparing search index...

      Class ComponentResource<TData>

      ComponentResource is a resource that aggregates one or more other child resources into a higher level abstraction. The component resource itself is a resource, but does not require custom CRUD operations for provisioning.

      -

      Type Parameters

      • TData = any

      Hierarchy (View Summary)

      Index

      Constructors

      Type Parameters

      • TData = any

      Hierarchy (View Summary)

      Index

      Constructors

      Properties

      Methods

      getData getProvider @@ -25,22 +25,22 @@ component's children are constructed by the engine rather than in this process, and the constructor skips local child registration accordingly.

      -
    • OptionalpackageRef: Promise<string | undefined>
    • Returns ComponentResource<TData>

      Properties

      urn: Output<string>

      The stable logical URN used to distinctly address a resource, both before +

    • OptionalpackageRef: Promise<string | undefined>
    • Returns ComponentResource<TData>

      Properties

      urn: Output<string>

      The stable logical URN used to distinctly address a resource, both before and after deployments.

      -

      Methods

      Methods

      • Registers 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.

        -

        Parameters

        Returns void

      +

      Parameters

      Returns obj is ComponentResource<any>

      diff --git a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/classes/Config.html b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/classes/Config.html index a3fd1ae811c2..5bf3812ad3eb 100644 --- a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/classes/Config.html +++ b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/classes/Config.html @@ -1,9 +1,9 @@ -Config | @pulumi/pulumi - v3.242.0
      @pulumi/pulumi - v3.242.0
        Preparing search index...

        Class Config

        Config is a bag of related configuration state. Each bag contains any number of configuration variables, indexed by +Config | @pulumi/pulumi - v3.243.0

        @pulumi/pulumi - v3.243.0
          Preparing search index...

          Class Config

          Config is a bag of related configuration state. Each bag contains any number of configuration variables, indexed by simple keys, and each has a name that uniquely identifies it; two bags with different names do not share values for variables that otherwise share the same key. For example, a bag whose name is pulumi:foo, with keys a, b, and c, is entirely separate from a bag whose name is pulumi:bar with the same simple key names. Each key has a fully qualified names, such as pulumi:foo:a, ..., and pulumi:bar:a, respectively.

          -
          Index

          Constructors

          Index

          Constructors

          Properties

          name: string

          name is the configuration bag's logical name and uniquely identifies it. The default is the name of the current +

          Constructors

          Properties

          name: string

          name is the configuration bag's logical name and uniquely identifies it. The default is the name of the current project.

          -

          Methods

          Methods

          • get loads an optional configuration value by its key, or undefined if it doesn't exist.

            Type Parameters

            • K extends string = string

            Parameters

            • key: string

              The key to lookup.

            • Optionalopts: StringConfigOptions<K>

              An options bag to constrain legal values.

              -

            Returns K | undefined

          • getBoolean loads an optional configuration value, as a boolean, by its key, or undefined if it doesn't exist. +

          Returns K | undefined

          • getBoolean loads an optional configuration value, as a boolean, by its key, or undefined if it doesn't exist. If the configuration value isn't a legal boolean, this function will throw an error.

            Parameters

            • key: string

              The key to lookup.

              -

            Returns boolean | undefined

          • getNumber loads an optional configuration value, as a number, by its key, or undefined if it doesn't exist. +

          Returns boolean | undefined

          Returns number | undefined

          Returns T | undefined

          Returns Output<K> | undefined

          Returns OutputInstance<boolean> | undefined

          Returns OutputInstance<number> | undefined

          Returns Output<T> | undefined

          Returns K

          Returns boolean

          Returns number

          Returns T

          Returns Output<K>

          Returns OutputInstance<boolean>

          Returns OutputInstance<number>

          +

          Returns Output<T>

          diff --git a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/classes/CustomResource.html b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/classes/CustomResource.html index e5dee44089a6..330ee155a923 100644 --- a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/classes/CustomResource.html +++ b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/classes/CustomResource.html @@ -1,9 +1,9 @@ -CustomResource | @pulumi/pulumi - v3.242.0
          @pulumi/pulumi - v3.242.0
            Preparing search index...

            Class CustomResourceAbstract

            CustomResource is a resource whose create, read, update, and delete +CustomResource | @pulumi/pulumi - v3.243.0

            @pulumi/pulumi - v3.243.0
              Preparing search index...

              Class CustomResourceAbstract

              CustomResource is a resource whose create, read, update, and delete (CRUD) operations are managed by performing external operations on some physical entity. The engine understands how to diff and perform partial updates of them, and these CRUD operations are implemented in a dynamically loaded plugin for the defining package.

              -

              Hierarchy (View Summary)

              Index

              Constructors

              Hierarchy (View Summary)

              Index

              Constructors

              Properties

              Methods

              getProvider @@ -21,12 +21,12 @@
            • Optionalprops: Inputs

              The arguments to use to populate the new resource.

            • opts: CustomResourceOptions = {}

              A bag of options that control this resource's behavior.

            • dependency: boolean = false

              True if this is a synthetic resource used internally for dependency tracking.

              -
            • OptionalpackageRef: Promise<string | undefined>
            • Returns CustomResource

              Properties

              id: Output<string>

              The provider-assigned unique ID for this managed resource. It is set +

            • OptionalpackageRef: Promise<string | undefined>
            • Returns CustomResource

              Properties

              id: Output<string>

              The provider-assigned unique ID for this managed resource. It is set during deployments and may be missing (undefined) during planning phases.

              -
              urn: Output<string>

              The stable logical URN used to distinctly address a resource, both before +

              urn: Output<string>

              The stable logical URN used to distinctly address a resource, both before and after deployments.

              -

              Methods

              Methods

              +

              Parameters

              Returns obj is CustomResource

              diff --git a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/classes/DependencyProviderResource.html b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/classes/DependencyProviderResource.html index 708a2c17e9d1..2ee3a87cb269 100644 --- a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/classes/DependencyProviderResource.html +++ b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/classes/DependencyProviderResource.html @@ -1,18 +1,18 @@ -DependencyProviderResource | @pulumi/pulumi - v3.242.0
              @pulumi/pulumi - v3.242.0
                Preparing search index...

                Class DependencyProviderResource

                A DependencyProviderResource is a resource that is used by the +DependencyProviderResource | @pulumi/pulumi - v3.243.0

                @pulumi/pulumi - v3.243.0
                  Preparing search index...

                  Class DependencyProviderResource

                  A DependencyProviderResource is a resource that is used by the provider SDK as a stand-in for a provider that is only used for its reference. Its only valid properties are its URN and ID.

                  -

                  Hierarchy (View Summary)

                  Index

                  Constructors

                  Hierarchy (View Summary)

                  Index

                  Constructors

                  Properties

                  Methods

                  Constructors

                  Properties

                  id: Output<string>

                  The provider-assigned unique ID for this managed resource. It is set +

                  Constructors

                  Properties

                  id: Output<string>

                  The provider-assigned unique ID for this managed resource. It is set during deployments and may be missing (undefined) during planning phases.

                  -
                  urn: Output<string>

                  The stable logical URN used to distinctly address a resource, both before +

                  urn: Output<string>

                  The stable logical URN used to distinctly address a resource, both before and after deployments.

                  -

                  Methods

                  Methods

                  +

                  Parameters

                  • obj: any

                  Returns obj is CustomResource

                  diff --git a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/classes/DependencyResource.html b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/classes/DependencyResource.html index b5ff45324754..ed07a0ef44e6 100644 --- a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/classes/DependencyResource.html +++ b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/classes/DependencyResource.html @@ -1,17 +1,17 @@ -DependencyResource | @pulumi/pulumi - v3.242.0
                  @pulumi/pulumi - v3.242.0
                    Preparing search index...

                    Class DependencyResource

                    A DependencyResource is a resource that is used to indicate that an +DependencyResource | @pulumi/pulumi - v3.243.0

                    @pulumi/pulumi - v3.243.0
                      Preparing search index...

                      Class DependencyResource

                      A DependencyResource is a resource that is used to indicate that an Output has a dependency on a particular resource. These resources are only created when dealing with remote component resources.

                      -

                      Hierarchy (View Summary)

                      Index

                      Constructors

                      Hierarchy (View Summary)

                      Index

                      Constructors

                      Properties

                      Methods

                      Constructors

                      Properties

                      id: Output<string>

                      The provider-assigned unique ID for this managed resource. It is set +

                      Constructors

                      Properties

                      id: Output<string>

                      The provider-assigned unique ID for this managed resource. It is set during deployments and may be missing (undefined) during planning phases.

                      -
                      urn: Output<string>

                      The stable logical URN used to distinctly address a resource, both before +

                      urn: Output<string>

                      The stable logical URN used to distinctly address a resource, both before and after deployments.

                      -

                      Methods

                      Methods

                      +

                      Parameters

                      • obj: any

                      Returns obj is CustomResource

                      diff --git a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/classes/ErrorHook.html b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/classes/ErrorHook.html index 4b3b420ec689..cf2bc3a2865f 100644 --- a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/classes/ErrorHook.html +++ b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/classes/ErrorHook.html @@ -1,8 +1,8 @@ -ErrorHook | @pulumi/pulumi - v3.242.0
                      @pulumi/pulumi - v3.242.0
                        Preparing search index...

                        Class ErrorHook

                        ErrorHook is a named hook that can be registered as an error hook.

                        -
                        Index

                        Constructors

                        constructor +ErrorHook | @pulumi/pulumi - v3.243.0
                        @pulumi/pulumi - v3.243.0
                          Preparing search index...

                          Class ErrorHook

                          ErrorHook is a named hook that can be registered as an error hook.

                          +
                          Index

                          Constructors

                          Properties

                          Methods

                          Constructors

                          Properties

                          The function that will be called when the error hook is triggered.

                          -
                          name: string

                          The unique name of the error hook.

                          -

                          Methods

                          +

                          Constructors

                          Properties

                          The function that will be called when the error hook is triggered.

                          +
                          name: string

                          The unique name of the error hook.

                          +

                          Methods

                          diff --git a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/classes/InputPropertiesError.html b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/classes/InputPropertiesError.html index 6e7e28d34eba..dd89611a9c71 100644 --- a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/classes/InputPropertiesError.html +++ b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/classes/InputPropertiesError.html @@ -1,8 +1,8 @@ -InputPropertiesError | @pulumi/pulumi - v3.242.0
                          @pulumi/pulumi - v3.242.0
                            Preparing search index...

                            Class InputPropertiesError

                            InputPropertiesError is an error type that is used to indicate that +InputPropertiesError | @pulumi/pulumi - v3.243.0

                            @pulumi/pulumi - v3.243.0
                              Preparing search index...

                              Class InputPropertiesError

                              InputPropertiesError is an error type that is used to indicate that multiple input properties have failed validation.

                              The engine will pretty print this error for the user.

                              -

                              Hierarchy

                              • Error
                                • InputPropertiesError
                              Index

                              Constructors

                              Hierarchy

                              • Error
                                • InputPropertiesError
                              Index

                              Constructors

                              Properties

                              Methods

                              Constructors

                              Properties

                              message: string

                              Methods

                              +

                              Constructors

                              Properties

                              message: string

                              Methods

                              diff --git a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/classes/InputPropertyError.html b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/classes/InputPropertyError.html index 56bb5821a52e..7f7c2c4035ec 100644 --- a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/classes/InputPropertyError.html +++ b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/classes/InputPropertyError.html @@ -1,8 +1,8 @@ -InputPropertyError | @pulumi/pulumi - v3.242.0
                              @pulumi/pulumi - v3.242.0
                                Preparing search index...

                                Class InputPropertyError

                                InputPropertyError is an error type that is used to indicate that a +InputPropertyError | @pulumi/pulumi - v3.243.0

                                @pulumi/pulumi - v3.243.0
                                  Preparing search index...

                                  Class InputPropertyError

                                  InputPropertyError is an error type that is used to indicate that a an input property has failed validation.

                                  The engine will pretty print this error for the user.

                                  -

                                  Hierarchy

                                  • Error
                                    • InputPropertyError
                                  Index

                                  Constructors

                                  Hierarchy

                                  • Error
                                    • InputPropertyError
                                  Index

                                  Constructors

                                  Properties

                                  Methods

                                  Constructors

                                  Properties

                                  propertyPath: string
                                  reason: string

                                  Methods

                                  +

                                  Constructors

                                  Properties

                                  propertyPath: string
                                  reason: string

                                  Methods

                                  diff --git a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/classes/ProviderResource.html b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/classes/ProviderResource.html index a1fe14d8d00e..95ee835cbeaf 100644 --- a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/classes/ProviderResource.html +++ b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/classes/ProviderResource.html @@ -1,7 +1,7 @@ -ProviderResource | @pulumi/pulumi - v3.242.0
                                  @pulumi/pulumi - v3.242.0
                                    Preparing search index...

                                    Class ProviderResourceAbstract

                                    ProviderResource is a resource that implements CRUD operations for +ProviderResource | @pulumi/pulumi - v3.243.0

                                    @pulumi/pulumi - v3.243.0
                                      Preparing search index...

                                      Class ProviderResourceAbstract

                                      ProviderResource is a resource that implements CRUD operations for other custom resources. These resources are managed similarly to other resources, including the usual diffing and update semantics.

                                      -

                                      Hierarchy (View Summary)

                                      Index

                                      Constructors

                                      Hierarchy (View Summary)

                                      Index

                                      Constructors

                                      Properties

                                      Methods

                                      getProvider @@ -13,12 +13,12 @@
                                    • Optionalprops: Inputs

                                      The configuration to use for this provider.

                                    • opts: ResourceOptions = {}

                                      A bag of options that control this provider's behavior.

                                    • dependency: boolean = false

                                      True if this is a synthetic resource used internally for dependency tracking.

                                      -
                                    • OptionalpackageRef: Promise<string | undefined>
                                    • Returns ProviderResource

                                      Properties

                                      id: Output<string>

                                      The provider-assigned unique ID for this managed resource. It is set +

                                    • OptionalpackageRef: Promise<string | undefined>
                                    • Returns ProviderResource

                                      Properties

                                      id: Output<string>

                                      The provider-assigned unique ID for this managed resource. It is set during deployments and may be missing (undefined) during planning phases.

                                      -
                                      urn: Output<string>

                                      The stable logical URN used to distinctly address a resource, both before +

                                      urn: Output<string>

                                      The stable logical URN used to distinctly address a resource, both before and after deployments.

                                      -

                                      Methods

                                      Methods

                                      +

                                      Parameters

                                      Returns obj is CustomResource

                                      diff --git a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/classes/Resource.html b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/classes/Resource.html index 6605a0cba89d..76da168bb3d7 100644 --- a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/classes/Resource.html +++ b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/classes/Resource.html @@ -1,6 +1,6 @@ -Resource | @pulumi/pulumi - v3.242.0
                                      @pulumi/pulumi - v3.242.0
                                        Preparing search index...

                                        Class ResourceAbstract

                                        Resource represents a class whose CRUD operations are implemented by +Resource | @pulumi/pulumi - v3.243.0

                                        @pulumi/pulumi - v3.243.0
                                          Preparing search index...

                                          Class ResourceAbstract

                                          Resource represents a class whose CRUD operations are implemented by a provider plugin.

                                          -

                                          Hierarchy (View Summary)

                                          Index

                                          Constructors

                                          Hierarchy (View Summary)

                                          Index

                                          Constructors

                                          Properties

                                          Methods

                                          getProvider isInstance @@ -21,7 +21,7 @@ this process, and the constructor skips local child registration accordingly.

                                        • dependency: boolean = false

                                          True if this is a synthetic resource used internally for dependency tracking.

                                          -
                                        • OptionalpackageRef: Promise<string | undefined>
                                        • Returns Resource

                                          Properties

                                          urn: Output<string>

                                          The stable logical URN used to distinctly address a resource, both before +

                                        • OptionalpackageRef: Promise<string | undefined>
                                        • Returns Resource

                                          Properties

                                          urn: Output<string>

                                          The stable logical URN used to distinctly address a resource, both before and after deployments.

                                          -

                                          Methods

                                          +

                                          Methods

                                          diff --git a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/classes/ResourceError.html b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/classes/ResourceError.html index 19b08c34e49c..bc80da27623b 100644 --- a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/classes/ResourceError.html +++ b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/classes/ResourceError.html @@ -1,13 +1,13 @@ -ResourceError | @pulumi/pulumi - v3.242.0
                                          @pulumi/pulumi - v3.242.0
                                            Preparing search index...

                                            Class ResourceError

                                            ResourceError can be used for terminating a program abruptly, +ResourceError | @pulumi/pulumi - v3.243.0

                                            @pulumi/pulumi - v3.243.0
                                              Preparing search index...

                                              Class ResourceError

                                              ResourceError can be used for terminating a program abruptly, specifically associating the problem with a Resource. Depending on the nature of the problem, clients can choose whether or not the call stack should be hidden as well. This should be very rare, and would only indicate that presenting the stack to the user would not be useful/be detrimental.

                                              -

                                              Hierarchy

                                              • Error
                                                • ResourceError
                                              Index

                                              Constructors

                                              Hierarchy

                                              • Error
                                                • ResourceError
                                              Index

                                              Constructors

                                              Properties

                                              Methods

                                              Constructors

                                              Properties

                                              hideStack?: boolean
                                              resource: Resource | undefined

                                              Methods

                                              Constructors

                                              Properties

                                              hideStack?: boolean
                                              resource: Resource | undefined

                                              Methods

                                              +

                                              Parameters

                                              • obj: any

                                              Returns obj is ResourceError

                                              diff --git a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/classes/ResourceHook.html b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/classes/ResourceHook.html index 50832211da2b..3bcad2d3e731 100644 --- a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/classes/ResourceHook.html +++ b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/classes/ResourceHook.html @@ -1,10 +1,10 @@ -ResourceHook | @pulumi/pulumi - v3.242.0
                                              @pulumi/pulumi - v3.242.0
                                                Preparing search index...

                                                Class ResourceHook

                                                ResourceHook is a named hook that can be registered as a resource hook.

                                                -
                                                Index

                                                Constructors

                                                constructor +ResourceHook | @pulumi/pulumi - v3.243.0
                                                @pulumi/pulumi - v3.243.0
                                                  Preparing search index...

                                                  Class ResourceHook

                                                  ResourceHook is a named hook that can be registered as a resource hook.

                                                  +
                                                  Index

                                                  Constructors

                                                  Properties

                                                  Methods

                                                  Constructors

                                                  Properties

                                                  The function that will be called when the resource hook is triggered.

                                                  -
                                                  name: string

                                                  The unqiue name of the resource hook.

                                                  -

                                                  Run the hook during dry run (preview) operations. Defaults to false.

                                                  -

                                                  Methods

                                                  +

                                                  Constructors

                                                  Properties

                                                  The function that will be called when the resource hook is triggered.

                                                  +
                                                  name: string

                                                  The unqiue name of the resource hook.

                                                  +

                                                  Run the hook during dry run (preview) operations. Defaults to false.

                                                  +

                                                  Methods

                                                  diff --git a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/classes/RunError.html b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/classes/RunError.html index c78dc05c0102..3d05b4dbcbb5 100644 --- a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/classes/RunError.html +++ b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/classes/RunError.html @@ -1,11 +1,11 @@ -RunError | @pulumi/pulumi - v3.242.0
                                                  @pulumi/pulumi - v3.242.0
                                                    Preparing search index...

                                                    Class RunError

                                                    RunError can be used for terminating a program abruptly, but +RunError | @pulumi/pulumi - v3.243.0

                                                    @pulumi/pulumi - v3.243.0
                                                      Preparing search index...

                                                      Class RunError

                                                      RunError can be used for terminating a program abruptly, but resulting in a clean exit rather than the usual verbose unhandled error logic which emits the source program text and complete stack trace. This type should be rarely used. Ideally ResourceError should always be used so that as many errors as possible can be associated with a resource.

                                                      -

                                                      Hierarchy

                                                      • Error
                                                        • RunError
                                                      Index

                                                      Constructors

                                                      Hierarchy

                                                      • Error
                                                        • RunError
                                                      Index

                                                      Constructors

                                                      Methods

                                                      Constructors

                                                      • Parameters

                                                        • Optionalmessage: string

                                                        Returns RunError

                                                      Methods

                                                      • Returns true if the given object is a RunError. This is designed to work even when multiple copies of the Pulumi SDK have been loaded into the same process.

                                                        -

                                                        Parameters

                                                        • obj: any

                                                        Returns obj is RunError

                                                      +

                                                      Parameters

                                                      • obj: any

                                                      Returns obj is RunError

                                                      diff --git a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/classes/StackReference.html b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/classes/StackReference.html index d0115ccaf5cf..d9e0eec4a649 100644 --- a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/classes/StackReference.html +++ b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/classes/StackReference.html @@ -1,7 +1,7 @@ -StackReference | @pulumi/pulumi - v3.242.0
                                                      @pulumi/pulumi - v3.242.0
                                                        Preparing search index...

                                                        Class StackReference

                                                        Manages a reference to a Pulumi stack. The referenced stack's outputs are +StackReference | @pulumi/pulumi - v3.243.0

                                                        @pulumi/pulumi - v3.243.0
                                                          Preparing search index...

                                                          Class StackReference

                                                          Manages a reference to a Pulumi stack. The referenced stack's outputs are available via the StackReference.outputs property or the StackReference.output method.

                                                          -

                                                          Hierarchy (View Summary)

                                                          Index

                                                          Constructors

                                                          Hierarchy (View Summary)

                                                          Index

                                                          Constructors

                                                          Properties

                                                          id name outputs @@ -21,37 +21,37 @@

                                                          Parameters

                                                          • name: string

                                                            The unique name of the stack reference.

                                                          • Optionalargs: StackReferenceArgs

                                                            The arguments to use to populate this resource's properties.

                                                          • Optionalopts: CustomResourceOptions

                                                            A bag of options that control this resource's behavior.

                                                            -

                                                          Returns StackReference

                                                          Properties

                                                          id: Output<string>

                                                          The provider-assigned unique ID for this managed resource. It is set +

                                                          Returns StackReference

                                                          Properties

                                                          id: Output<string>

                                                          The provider-assigned unique ID for this managed resource. It is set during deployments and may be missing (undefined) during planning phases.

                                                          -
                                                          name: Output<string>

                                                          The name of the referenced stack.

                                                          -
                                                          outputs: Output<{ [name: string]: any }>

                                                          The outputs of the referenced stack.

                                                          -
                                                          secretOutputNames: Output<string[]>

                                                          The names of any stack outputs which contain secrets.

                                                          -
                                                          urn: Output<string>

                                                          The stable logical URN used to distinctly address a resource, both before +

                                                          name: Output<string>

                                                          The name of the referenced stack.

                                                          +
                                                          outputs: Output<{ [name: string]: any }>

                                                          The outputs of the referenced stack.

                                                          +
                                                          secretOutputNames: Output<string[]>

                                                          The names of any stack outputs which contain secrets.

                                                          +
                                                          urn: Output<string>

                                                          The stable logical URN used to distinctly address a resource, both before and after deployments.

                                                          -

                                                          Methods

                                                          Methods

                                                          Returns Output<any>

                                                          Returns Promise<StackReferenceOutputDetails>

                                                          Returns Promise<any>

                                                          Returns Output<any>

                                                          Returns Promise<any>

                                                          +

                                                          Parameters

                                                          Returns obj is CustomResource

                                                          diff --git a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/classes/Stash.html b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/classes/Stash.html index fcfd1978ea79..2d1415fe4587 100644 --- a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/classes/Stash.html +++ b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/classes/Stash.html @@ -1,5 +1,5 @@ -Stash | @pulumi/pulumi - v3.242.0
                                                          @pulumi/pulumi - v3.242.0
                                                            Preparing search index...

                                                            Class Stash

                                                            Stash stores an arbitrary value in the state.

                                                            -

                                                            Hierarchy (View Summary)

                                                            Index

                                                            Constructors

                                                            constructor +Stash | @pulumi/pulumi - v3.243.0
                                                            @pulumi/pulumi - v3.243.0
                                                              Preparing search index...

                                                              Class Stash

                                                              Stash stores an arbitrary value in the state.

                                                              +

                                                              Hierarchy (View Summary)

                                                              Index

                                                              Constructors

                                                              Properties

                                                              id input output @@ -9,14 +9,14 @@

                                                              Constructors

                                                              Properties

                                                              id: Output<string>

                                                              The provider-assigned unique ID for this managed resource. It is set +

                                                              Returns Stash

                                                              Properties

                                                              id: Output<string>

                                                              The provider-assigned unique ID for this managed resource. It is set during deployments and may be missing (undefined) during planning phases.

                                                              -
                                                              input: Output<any>

                                                              The most recent value passed to the stash resource.

                                                              -
                                                              output: Output<any>

                                                              The value saved in the state for the stash.

                                                              -
                                                              urn: Output<string>

                                                              The stable logical URN used to distinctly address a resource, both before +

                                                              input: Output<any>

                                                              The most recent value passed to the stash resource.

                                                              +
                                                              output: Output<any>

                                                              The value saved in the state for the stash.

                                                              +
                                                              urn: Output<string>

                                                              The stable logical URN used to distinctly address a resource, both before and after deployments.

                                                              -

                                                              Methods

                                                              Methods

                                                              +

                                                              Parameters

                                                              Returns obj is CustomResource

                                                              diff --git a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/classes/asset.Archive.html b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/classes/asset.Archive.html index b1f78c35a5b7..e364d7a9fed4 100644 --- a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/classes/asset.Archive.html +++ b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/classes/asset.Archive.html @@ -1,7 +1,7 @@ -Archive | @pulumi/pulumi - v3.242.0
                                                              @pulumi/pulumi - v3.242.0
                                                                Preparing search index...

                                                                Class ArchiveAbstract

                                                                An Archive represents a collection of named assets.

                                                                -

                                                                Hierarchy (View Summary)

                                                                Index

                                                                Constructors

                                                                constructor +Archive | @pulumi/pulumi - v3.243.0
                                                                @pulumi/pulumi - v3.243.0
                                                                  Preparing search index...

                                                                  Class ArchiveAbstract

                                                                  An Archive represents a collection of named assets.

                                                                  +

                                                                  Hierarchy (View Summary)

                                                                  Index

                                                                  Constructors

                                                                  Methods

                                                                  Constructors

                                                                  Methods

                                                                  +

                                                                  Parameters

                                                                  • obj: any

                                                                  Returns obj is Archive

                                                                  diff --git a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/classes/asset.Asset.html b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/classes/asset.Asset.html index e91c0d42fc52..c1f3303ab889 100644 --- a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/classes/asset.Asset.html +++ b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/classes/asset.Asset.html @@ -1,8 +1,8 @@ -Asset | @pulumi/pulumi - v3.242.0
                                                                  @pulumi/pulumi - v3.242.0
                                                                    Preparing search index...

                                                                    Class AssetAbstract

                                                                    Asset represents a single blob of text or data that is managed as a +Asset | @pulumi/pulumi - v3.243.0

                                                                    @pulumi/pulumi - v3.243.0
                                                                      Preparing search index...

                                                                      Class AssetAbstract

                                                                      Asset represents a single blob of text or data that is managed as a first-class entity.

                                                                      -

                                                                      Hierarchy (View Summary)

                                                                      Index

                                                                      Constructors

                                                                      Hierarchy (View Summary)

                                                                      Index

                                                                      Constructors

                                                                      Methods

                                                                      Constructors

                                                                      Methods

                                                                      • Returns true if the given object is an Asset. This is designed to work even when multiple copies of the Pulumi SDK have been loaded into the same process.

                                                                        -

                                                                        Parameters

                                                                        • obj: any

                                                                        Returns obj is Asset

                                                                      +

                                                                      Parameters

                                                                      • obj: any

                                                                      Returns obj is Asset

                                                                      diff --git a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/classes/asset.AssetArchive.html b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/classes/asset.AssetArchive.html index b78e63bc658c..809de09faaa0 100644 --- a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/classes/asset.AssetArchive.html +++ b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/classes/asset.AssetArchive.html @@ -1,10 +1,10 @@ -AssetArchive | @pulumi/pulumi - v3.242.0
                                                                      @pulumi/pulumi - v3.242.0
                                                                        Preparing search index...

                                                                        Class AssetArchive

                                                                        An AssetArchive is an archive created from an in-memory collection of +AssetArchive | @pulumi/pulumi - v3.243.0

                                                                        @pulumi/pulumi - v3.243.0
                                                                          Preparing search index...

                                                                          Class AssetArchive

                                                                          An AssetArchive is an archive created from an in-memory collection of named assets or other archives.

                                                                          -

                                                                          Hierarchy (View Summary)

                                                                          Index

                                                                          Constructors

                                                                          Hierarchy (View Summary)

                                                                          Index

                                                                          Constructors

                                                                          Properties

                                                                          Methods

                                                                          Constructors

                                                                          Properties

                                                                          assets: Promise<AssetMap>

                                                                          A map of names to assets.

                                                                          -

                                                                          Methods

                                                                          • Returns true if the given object is an Archive. This is designed +

                                                                          Constructors

                                                                          Properties

                                                                          assets: Promise<AssetMap>

                                                                          A map of names to assets.

                                                                          +

                                                                          Methods

                                                                          +

                                                                          Parameters

                                                                          • obj: any

                                                                          Returns obj is Archive

                                                                          diff --git a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/classes/asset.FileArchive.html b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/classes/asset.FileArchive.html index 31b6f938687d..83a4756774b4 100644 --- a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/classes/asset.FileArchive.html +++ b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/classes/asset.FileArchive.html @@ -1,11 +1,11 @@ -FileArchive | @pulumi/pulumi - v3.242.0
                                                                          @pulumi/pulumi - v3.242.0
                                                                            Preparing search index...

                                                                            Class FileArchive

                                                                            A FileArchive is a file-based archive, or a collection of file-based +FileArchive | @pulumi/pulumi - v3.243.0

                                                                            @pulumi/pulumi - v3.243.0
                                                                              Preparing search index...

                                                                              Class FileArchive

                                                                              A FileArchive is a file-based archive, or a collection of file-based assets. This can be a raw directory or a single archive file in one of the supported formats (.tar, .tar.gz, or .zip).

                                                                              -

                                                                              Hierarchy (View Summary)

                                                                              Index

                                                                              Constructors

                                                                              Hierarchy (View Summary)

                                                                              Index

                                                                              Constructors

                                                                              Properties

                                                                              Methods

                                                                              Constructors

                                                                              Properties

                                                                              path: Promise<string>

                                                                              The path to the asset file.

                                                                              -

                                                                              Methods

                                                                              • Returns true if the given object is an Archive. This is designed +

                                                                              Constructors

                                                                              Properties

                                                                              path: Promise<string>

                                                                              The path to the asset file.

                                                                              +

                                                                              Methods

                                                                              +

                                                                              Parameters

                                                                              • obj: any

                                                                              Returns obj is Archive

                                                                              diff --git a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/classes/asset.FileAsset.html b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/classes/asset.FileAsset.html index e185c3314694..ec5bbe432104 100644 --- a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/classes/asset.FileAsset.html +++ b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/classes/asset.FileAsset.html @@ -1,10 +1,10 @@ -FileAsset | @pulumi/pulumi - v3.242.0
                                                                              @pulumi/pulumi - v3.242.0
                                                                                Preparing search index...

                                                                                Class FileAsset

                                                                                FileAsset is a kind of asset produced from a given path to a file on +FileAsset | @pulumi/pulumi - v3.243.0

                                                                                @pulumi/pulumi - v3.243.0
                                                                                  Preparing search index...

                                                                                  Class FileAsset

                                                                                  FileAsset is a kind of asset produced from a given path to a file on the local filesystem.

                                                                                  -

                                                                                  Hierarchy (View Summary)

                                                                                  Index

                                                                                  Constructors

                                                                                  Hierarchy (View Summary)

                                                                                  Index

                                                                                  Constructors

                                                                                  Properties

                                                                                  Methods

                                                                                  Constructors

                                                                                  Properties

                                                                                  path: Promise<string>

                                                                                  The path to the asset file.

                                                                                  -

                                                                                  Methods

                                                                                  • Returns true if the given object is an Asset. This is designed to +

                                                                                  Constructors

                                                                                  Properties

                                                                                  path: Promise<string>

                                                                                  The path to the asset file.

                                                                                  +

                                                                                  Methods

                                                                                  +

                                                                                  Parameters

                                                                                  • obj: any

                                                                                  Returns obj is Asset

                                                                                  diff --git a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/classes/asset.RemoteArchive.html b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/classes/asset.RemoteArchive.html index be4ad031aff2..3ffff50531a2 100644 --- a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/classes/asset.RemoteArchive.html +++ b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/classes/asset.RemoteArchive.html @@ -1,13 +1,13 @@ -RemoteArchive | @pulumi/pulumi - v3.242.0
                                                                                  @pulumi/pulumi - v3.242.0
                                                                                    Preparing search index...

                                                                                    Class RemoteArchive

                                                                                    A RemoteArchive is a file-based archive fetched from a remote +RemoteArchive | @pulumi/pulumi - v3.243.0

                                                                                    @pulumi/pulumi - v3.243.0
                                                                                      Preparing search index...

                                                                                      Class RemoteArchive

                                                                                      A RemoteArchive is a file-based archive fetched from a remote location. The URI's scheme dictates the protocol for fetching the archive's contents: file:// is a local file (just like a FileArchive), http:// and https:// specify HTTP and HTTPS, respectively, and specific providers may recognize custom schemes.

                                                                                      -

                                                                                      Hierarchy (View Summary)

                                                                                      Index

                                                                                      Constructors

                                                                                      Hierarchy (View Summary)

                                                                                      Index

                                                                                      Constructors

                                                                                      Properties

                                                                                      Methods

                                                                                      Constructors

                                                                                      Properties

                                                                                      uri: Promise<string>

                                                                                      The URI where the archive lives.

                                                                                      -

                                                                                      Methods

                                                                                      • Returns true if the given object is an Archive. This is designed +

                                                                                      Constructors

                                                                                      Properties

                                                                                      uri: Promise<string>

                                                                                      The URI where the archive lives.

                                                                                      +

                                                                                      Methods

                                                                                      +

                                                                                      Parameters

                                                                                      • obj: any

                                                                                      Returns obj is Archive

                                                                                      diff --git a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/classes/asset.RemoteAsset.html b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/classes/asset.RemoteAsset.html index a0a692d57e8e..b1a51957426b 100644 --- a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/classes/asset.RemoteAsset.html +++ b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/classes/asset.RemoteAsset.html @@ -1,13 +1,13 @@ -RemoteAsset | @pulumi/pulumi - v3.242.0
                                                                                      @pulumi/pulumi - v3.242.0
                                                                                        Preparing search index...

                                                                                        Class RemoteAsset

                                                                                        RemoteAsset is a kind of asset produced from a given URI string. The +RemoteAsset | @pulumi/pulumi - v3.243.0

                                                                                        @pulumi/pulumi - v3.243.0
                                                                                          Preparing search index...

                                                                                          Class RemoteAsset

                                                                                          RemoteAsset is a kind of asset produced from a given URI string. The URI's scheme dictates the protocol for fetching contents: file:// specifies a local file, http:// and https:// specify HTTP and HTTPS, respectively. Note that specific providers may recognize alternative schemes; this is merely the smallest set that all providers support.

                                                                                          -

                                                                                          Hierarchy (View Summary)

                                                                                          Index

                                                                                          Constructors

                                                                                          Hierarchy (View Summary)

                                                                                          Index

                                                                                          Constructors

                                                                                          Properties

                                                                                          Methods

                                                                                          Constructors

                                                                                          Properties

                                                                                          uri: Promise<string>

                                                                                          The URI where the asset lives.

                                                                                          -

                                                                                          Methods

                                                                                          • Returns true if the given object is an Asset. This is designed to +

                                                                                          Constructors

                                                                                          Properties

                                                                                          uri: Promise<string>

                                                                                          The URI where the asset lives.

                                                                                          +

                                                                                          Methods

                                                                                          +

                                                                                          Parameters

                                                                                          • obj: any

                                                                                          Returns obj is Asset

                                                                                          diff --git a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/classes/asset.StringAsset.html b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/classes/asset.StringAsset.html index a5d4e8c6ea2e..53f38d1a8d94 100644 --- a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/classes/asset.StringAsset.html +++ b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/classes/asset.StringAsset.html @@ -1,10 +1,10 @@ -StringAsset | @pulumi/pulumi - v3.242.0
                                                                                          @pulumi/pulumi - v3.242.0
                                                                                            Preparing search index...

                                                                                            Class StringAsset

                                                                                            StringAsset is a kind of asset produced from an in-memory +StringAsset | @pulumi/pulumi - v3.243.0

                                                                                            @pulumi/pulumi - v3.243.0
                                                                                              Preparing search index...

                                                                                              Class StringAsset

                                                                                              StringAsset is a kind of asset produced from an in-memory UTF8-encoded string.

                                                                                              -

                                                                                              Hierarchy (View Summary)

                                                                                              Index

                                                                                              Constructors

                                                                                              Hierarchy (View Summary)

                                                                                              Index

                                                                                              Constructors

                                                                                              Properties

                                                                                              Methods

                                                                                              Constructors

                                                                                              Properties

                                                                                              text: Promise<string>

                                                                                              The string contents.

                                                                                              -

                                                                                              Methods

                                                                                              • Returns true if the given object is an Asset. This is designed to +

                                                                                              Constructors

                                                                                              Properties

                                                                                              text: Promise<string>

                                                                                              The string contents.

                                                                                              +

                                                                                              Methods

                                                                                              +

                                                                                              Parameters

                                                                                              • obj: any

                                                                                              Returns obj is Asset

                                                                                              diff --git a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/classes/automation.CommandError.html b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/classes/automation.CommandError.html index e63d8f65a630..f2bdcb0c9d3f 100644 --- a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/classes/automation.CommandError.html +++ b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/classes/automation.CommandError.html @@ -1,2 +1,2 @@ -CommandError | @pulumi/pulumi - v3.242.0
                                                                                              @pulumi/pulumi - v3.242.0
                                                                                                Preparing search index...

                                                                                                Class CommandErrorAlpha

                                                                                                An error resulting from the invocation of a Pulumi command.

                                                                                                -

                                                                                                Hierarchy (View Summary)

                                                                                                +CommandError | @pulumi/pulumi - v3.243.0
                                                                                                @pulumi/pulumi - v3.243.0
                                                                                                  Preparing search index...

                                                                                                  Class CommandErrorAlpha

                                                                                                  An error resulting from the invocation of a Pulumi command.

                                                                                                  +

                                                                                                  Hierarchy (View Summary)

                                                                                                  diff --git a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/classes/automation.ConcurrentUpdateError.html b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/classes/automation.ConcurrentUpdateError.html index e998ed65a131..f03fa23fa6b9 100644 --- a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/classes/automation.ConcurrentUpdateError.html +++ b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/classes/automation.ConcurrentUpdateError.html @@ -1,3 +1,3 @@ -ConcurrentUpdateError | @pulumi/pulumi - v3.242.0
                                                                                                  @pulumi/pulumi - v3.242.0
                                                                                                    Preparing search index...

                                                                                                    Class ConcurrentUpdateError

                                                                                                    An error thrown when attempting to update a stack that is already being +ConcurrentUpdateError | @pulumi/pulumi - v3.243.0

                                                                                                    @pulumi/pulumi - v3.243.0
                                                                                                      Preparing search index...

                                                                                                      Class ConcurrentUpdateError

                                                                                                      An error thrown when attempting to update a stack that is already being updated.

                                                                                                      -

                                                                                                      Hierarchy (View Summary)

                                                                                                      +

                                                                                                      Hierarchy (View Summary)

                                                                                                      diff --git a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/classes/automation.LocalWorkspace.html b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/classes/automation.LocalWorkspace.html index dd2a0fdbd9fe..a6f33024ad30 100644 --- a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/classes/automation.LocalWorkspace.html +++ b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/classes/automation.LocalWorkspace.html @@ -1,4 +1,4 @@ -LocalWorkspace | @pulumi/pulumi - v3.242.0
                                                                                                      @pulumi/pulumi - v3.242.0
                                                                                                        Preparing search index...

                                                                                                        Class LocalWorkspaceAlpha

                                                                                                        LocalWorkspace is a default implementation of the Workspace interface.

                                                                                                        +LocalWorkspace | @pulumi/pulumi - v3.243.0
                                                                                                        @pulumi/pulumi - v3.243.0
                                                                                                          Preparing search index...

                                                                                                          Class LocalWorkspaceAlpha

                                                                                                          LocalWorkspace is a default implementation of the Workspace interface.

                                                                                                          A Workspace is the execution context containing a single Pulumi project, a program, and multiple stacks. Workspaces are used to manage the execution environment, providing various utilities such as plugin @@ -10,7 +10,7 @@ file, and setting config on a Stack will modify the relevant Pulumi.<stack>.yaml file. This is identical to the behavior of Pulumi CLI driven workspaces.

                                                                                                          -

                                                                                                          Implements

                                                                                                          Index

                                                                                                          Properties

                                                                                                          Implements

                                                                                                          Index

                                                                                                          Properties

                                                                                                          envVars: { [key: string]: string }

                                                                                                          Environment values scoped to the current workspace. These will be supplied to every Pulumi command.

                                                                                                          -
                                                                                                          program?: PulumiFn

                                                                                                          The inline program PulumiFn to be used for preview/update +

                                                                                                          program?: PulumiFn

                                                                                                          The inline program PulumiFn to be used for preview/update operations if any. If none is specified, the stack will refer to ProjectSettings for this information.

                                                                                                          -
                                                                                                          pulumiHome?: string

                                                                                                          The directory override for CLI metadata if set. This customizes the +

                                                                                                          pulumiHome?: string

                                                                                                          The directory override for CLI metadata if set. This customizes the location of $PULUMI_HOME where metadata is stored and plugins are installed.

                                                                                                          -
                                                                                                          remoteExecutorImage?: ExecutorImage

                                                                                                          The image to use for the remote Pulumi operation.

                                                                                                          -
                                                                                                          secretsProvider?: string

                                                                                                          The secrets provider to use for encryption and decryption of stack secrets. +

                                                                                                          remoteExecutorImage?: ExecutorImage

                                                                                                          The image to use for the remote Pulumi operation.

                                                                                                          +
                                                                                                          secretsProvider?: string

                                                                                                          The secrets provider to use for encryption and decryption of stack secrets. See: https://www.pulumi.com/docs/intro/concepts/secrets/#available-encryption-providers

                                                                                                          -
                                                                                                          workDir: string

                                                                                                          The working directory to run Pulumi CLI commands in.

                                                                                                          -

                                                                                                          Accessors

                                                                                                          workDir: string

                                                                                                          The working directory to run Pulumi CLI commands in.

                                                                                                          +

                                                                                                          Accessors

                                                                                                          Methods

                                                                                                          Methods

                                                                                                          • Alpha

                                                                                                            Adds environments to the end of a stack's import list. Imported environments are merged in order per the ESC merge rules. The list of environments behaves as if it were the import list in an anonymous environment.

                                                                                                            Parameters

                                                                                                            • stackName: string

                                                                                                              The stack to operate on

                                                                                                            • ...environments: string[]

                                                                                                              The names of the environments to add to the stack's configuration

                                                                                                              -

                                                                                                            Returns Promise<void>

                                                                                                          • Alpha

                                                                                                            Creates and sets a new stack with the stack name, failing if one already +

                                                                                                          Returns Promise<void>

                                                                                                          • Alpha

                                                                                                            Exports the deployment state of the stack. This can be combined with +

                                                                                                          Returns Promise<void>

                                                                                                          Returns Promise<Deployment>

                                                                                                          Returns Promise<ConfigMap>

                                                                                                          Returns Promise<ConfigValue>

                                                                                                          Returns Promise<string>

                                                                                                          Returns Promise<void>

                                                                                                          Returns Promise<void>

                                                                                                          Returns Promise<void>

                                                                                                          Returns Promise<void>

                                                                                                          Returns Promise<string[]>

                                                                                                          Returns Promise<StackSummary[]>

                                                                                                          Returns Promise<TagMap>

                                                                                                          Returns Promise<ConfigMap>

                                                                                                          Returns Promise<void>

                                                                                                          Returns Promise<void>

                                                                                                          Returns Promise<void>

                                                                                                          Returns Promise<void>

                                                                                                          Returns Promise<void>

                                                                                                          Returns Promise<void>

                                                                                                          Returns Promise<void>

                                                                                                          Returns Promise<void>

                                                                                                          Returns Promise<void>

                                                                                                          Returns Promise<void>

                                                                                                          Returns Promise<void>

                                                                                                          Returns Promise<void>

                                                                                                          Returns Promise<void>

                                                                                                          Returns Promise<OutputMap>

                                                                                                          Returns Promise<StackSettings>

                                                                                                          Returns Promise<LocalWorkspace>

                                                                                                          Returns Promise<automation.Stack>

                                                                                                        • Alpha

                                                                                                          Creates or selects an existing Stack with a LocalWorkspace utilizing the specified inline Pulumi CLI program. This program is fully debuggable and runs in process. If no Project option is specified, default project settings will be created on behalf of the user. Similarly, unless a workDir option is specified, the working @@ -229,7 +229,7 @@

                                                                                                          Parameters

                                                                                                          • args: InlineProgramArgs

                                                                                                            A set of arguments to initialize a Stack with and inline PulumiFn program that runs in process.

                                                                                                          • Optionalopts: LocalWorkspaceOptions

                                                                                                            Additional customizations to be applied to the Workspace.

                                                                                                            -

                                                                                                          Returns Promise<automation.Stack>

                                                                                                        • Returns Promise<automation.Stack>

                                                                                                          Returns Promise<automation.Stack>

                                                                                                        • Alpha

                                                                                                          Creates a Stack with a LocalWorkspace utilizing the specified inline (in process) Pulumi program. This program is fully debuggable and runs in process. If no Project option is specified, default project settings will be created on behalf of the user. @@ -246,7 +246,7 @@

                                                                                                          Parameters

                                                                                                          Returns Promise<automation.Stack>

                                                                                                        • Returns Promise<automation.Stack>

                                                                                                          Returns Promise<automation.Stack>

                                                                                                        • Alpha

                                                                                                          Selects an existing Stack with a LocalWorkspace utilizing the specified inline (in process) Pulumi program. This program is fully debuggable and runs in process. If no Project option is specified, default project settings will be created on behalf of the user. @@ -263,4 +263,4 @@

                                                                                                          Parameters

                                                                                                          • args: InlineProgramArgs

                                                                                                            A set of arguments to initialize a Stack with and inline PulumiFn program that runs in process.

                                                                                                          • Optionalopts: LocalWorkspaceOptions

                                                                                                            Additional customizations to be applied to the Workspace.

                                                                                                            -

                                                                                                          Returns Promise<automation.Stack>

                                                                                                        • +

                                                                                                          Returns Promise<automation.Stack>

                                                                                                          diff --git a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/classes/automation.PulumiCommand.html b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/classes/automation.PulumiCommand.html index 56b96e608f24..1ea54856a86a 100644 --- a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/classes/automation.PulumiCommand.html +++ b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/classes/automation.PulumiCommand.html @@ -1,8 +1,8 @@ -PulumiCommand | @pulumi/pulumi - v3.242.0
                                                                                                          @pulumi/pulumi - v3.242.0
                                                                                                            Preparing search index...

                                                                                                            Class PulumiCommand

                                                                                                            Index

                                                                                                            Properties

                                                                                                            command +PulumiCommand | @pulumi/pulumi - v3.243.0
                                                                                                            @pulumi/pulumi - v3.243.0
                                                                                                              Preparing search index...

                                                                                                              Class PulumiCommand

                                                                                                              Index

                                                                                                              Properties

                                                                                                              Methods

                                                                                                              Properties

                                                                                                              command: string
                                                                                                              version: SemVer | null

                                                                                                              Methods

                                                                                                              Properties

                                                                                                              command: string
                                                                                                              version: SemVer | null

                                                                                                              Methods

                                                                                                              • Get a new Pulumi instance that uses the installation in opts.root. Defaults to using the pulumi binary found in $PATH if no installation root is specified. If opts.version is specified, it validates that the CLI is compatible with the requested version and throws an error if @@ -11,5 +11,5 @@ opts.skipVersionCheck to true. Note that the environment variable always takes precedence. If it is set it is not possible to re-enable the validation with opts.skipVersionCheck.

                                                                                                                -

                                                                                                                Parameters

                                                                                                                Returns Promise<PulumiCommand>

                                                                                                              +

                                                                                                              Parameters

                                                                                                              Returns Promise<PulumiCommand>

                                                                                                              diff --git a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/classes/automation.RemoteStack.html b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/classes/automation.RemoteStack.html index 79d65139acae..84406c80cbe8 100644 --- a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/classes/automation.RemoteStack.html +++ b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/classes/automation.RemoteStack.html @@ -1,6 +1,6 @@ -RemoteStack | @pulumi/pulumi - v3.242.0
                                                                                                              @pulumi/pulumi - v3.242.0
                                                                                                                Preparing search index...

                                                                                                                Class RemoteStack

                                                                                                                RemoteStack is an isolated, independently configurable instance of a +RemoteStack | @pulumi/pulumi - v3.243.0

                                                                                                                @pulumi/pulumi - v3.243.0
                                                                                                                  Preparing search index...

                                                                                                                  Class RemoteStack

                                                                                                                  RemoteStack is an isolated, independently configurable instance of a Pulumi program that is operated on remotely.

                                                                                                                  -
                                                                                                                  Index

                                                                                                                  Accessors

                                                                                                                  Index

                                                                                                                  Accessors

                                                                                                                  Methods

                                                                                                                  cancel destroy exportStack @@ -11,33 +11,33 @@ refresh up

                                                                                                                  Accessors

                                                                                                                  Methods

                                                                                                                  Methods

                                                                                                                  • Stops a stack's currently running update. It returns an error if no update is currently running. Note that this operation is very dangerous, and may leave the stack in an inconsistent state if a resource operation was pending when the update was canceled.

                                                                                                                    -

                                                                                                                    Returns Promise<void>

                                                                                                                  • Exports the deployment state of the stack. This can be combined with +

                                                                                                                  Returns Promise<DestroyResult>

                                                                                                                  Returns Promise<void>

                                                                                                                  Returns Promise<RefreshResult>

                                                                                                                  +
                                                                                                                  diff --git a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/classes/automation.RemoteWorkspace.html b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/classes/automation.RemoteWorkspace.html index afda1f376c91..ac42e852c933 100644 --- a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/classes/automation.RemoteWorkspace.html +++ b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/classes/automation.RemoteWorkspace.html @@ -1,6 +1,6 @@ -RemoteWorkspace | @pulumi/pulumi - v3.242.0
                                                                                                                  @pulumi/pulumi - v3.242.0
                                                                                                                    Preparing search index...

                                                                                                                    Class RemoteWorkspace

                                                                                                                    RemoteWorkspace is the execution context containing a single remote +RemoteWorkspace | @pulumi/pulumi - v3.243.0

                                                                                                                    @pulumi/pulumi - v3.243.0
                                                                                                                      Preparing search index...

                                                                                                                      Class RemoteWorkspace

                                                                                                                      RemoteWorkspace is the execution context containing a single remote Pulumi project.

                                                                                                                      -
                                                                                                                      Index

                                                                                                                      Methods

                                                                                                                      Index

                                                                                                                      Methods

                                                                                                                      Returns Promise<RemoteStack>

                                                                                                                      Returns Promise<RemoteStack>

                                                                                                                      +

                                                                                                                      Returns Promise<RemoteStack>

                                                                                                                      diff --git a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/classes/automation.Stack.html b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/classes/automation.Stack.html index 0b64edc2804a..64d4890ad2aa 100644 --- a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/classes/automation.Stack.html +++ b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/classes/automation.Stack.html @@ -1,10 +1,10 @@ -Stack | @pulumi/pulumi - v3.242.0
                                                                                                                      @pulumi/pulumi - v3.242.0
                                                                                                                        Preparing search index...

                                                                                                                        Class StackAlpha

                                                                                                                        Stack is an isolated, independently configurable instance of a Pulumi +Stack | @pulumi/pulumi - v3.243.0

                                                                                                                        @pulumi/pulumi - v3.243.0
                                                                                                                          Preparing search index...

                                                                                                                          Class StackAlpha

                                                                                                                          Stack is an isolated, independently configurable instance of a Pulumi program. Stack exposes methods for the full Pulumi lifecycle (up/preview/refresh/destroy), as well as managing configuration. Multiple Stacks are commonly used to denote different phases of development (such as development, staging and production) or feature branches (such as feature-x-dev, jane-feature-x-dev).

                                                                                                                          -
                                                                                                                          Index

                                                                                                                          Properties

                                                                                                                          Index

                                                                                                                          Properties

                                                                                                                          Methods

                                                                                                                          Properties

                                                                                                                          name: string

                                                                                                                          The name identifying the stack.

                                                                                                                          -
                                                                                                                          workspace: Workspace

                                                                                                                          The Workspace the stack was created from.

                                                                                                                          -

                                                                                                                          Methods

                                                                                                                          workspace: Workspace

                                                                                                                          The Workspace the stack was created from.

                                                                                                                          +

                                                                                                                          Methods

                                                                                                                          • Alpha

                                                                                                                            Adds environments to the end of a stack's import list. Imported environments are merged in order per the ESC merge rules. The list of environments behaves as if it were the import list in an anonymous environment.

                                                                                                                            Parameters

                                                                                                                            • ...environments: string[]

                                                                                                                              The names of the environments to add to the stack's configuration

                                                                                                                              -

                                                                                                                            Returns Promise<void>

                                                                                                                          • Alpha

                                                                                                                            Stops a stack's currently running update. It returns an error if no +

                                                                                                                          Returns Promise<void>

                                                                                                                          • Alpha

                                                                                                                            Stops a stack's currently running update. It returns an error if no update is currently running. Note that this operation is very dangerous, and may leave the stack in an inconsistent state if a resource operation was pending when the update was canceled.

                                                                                                                            -

                                                                                                                            Returns Promise<void>

                                                                                                                          • Alpha

                                                                                                                            Exports the deployment state of the stack. This can be combined with +

                                                                                                                          Returns Promise<DestroyResult>

                                                                                                                          Returns Promise<ConfigValue>

                                                                                                                          Returns Promise<string>

                                                                                                                          Returns Promise<ImportResult>

                                                                                                                          Returns Promise<void>

                                                                                                                          Returns Promise<void>

                                                                                                                          Returns Promise<PreviewResult>

                                                                                                                          Returns Promise<PreviewResult>

                                                                                                                          Returns Promise<RefreshResult>

                                                                                                                          Returns Promise<void>

                                                                                                                          Returns Promise<void>

                                                                                                                          Returns Promise<void>

                                                                                                                          Returns Promise<void>

                                                                                                                          Returns Promise<void>

                                                                                                                          Returns Promise<void>

                                                                                                                          Returns Promise<void>

                                                                                                                          Returns Promise<void>

                                                                                                                          Returns Promise<automation.Stack>

                                                                                                                          Returns Promise<automation.Stack>

                                                                                                                          +

                                                                                                                          Returns Promise<automation.Stack>

                                                                                                                          diff --git a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/classes/automation.StackAlreadyExistsError.html b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/classes/automation.StackAlreadyExistsError.html index d6d7f8b3b0ff..cc3798847e30 100644 --- a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/classes/automation.StackAlreadyExistsError.html +++ b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/classes/automation.StackAlreadyExistsError.html @@ -1,2 +1,2 @@ -StackAlreadyExistsError | @pulumi/pulumi - v3.242.0
                                                                                                                          @pulumi/pulumi - v3.242.0
                                                                                                                            Preparing search index...

                                                                                                                            Class StackAlreadyExistsError

                                                                                                                            An error thrown when attempting to create a stack that already exists.

                                                                                                                            -

                                                                                                                            Hierarchy (View Summary)

                                                                                                                            +StackAlreadyExistsError | @pulumi/pulumi - v3.243.0
                                                                                                                            @pulumi/pulumi - v3.243.0
                                                                                                                              Preparing search index...

                                                                                                                              Class StackAlreadyExistsError

                                                                                                                              An error thrown when attempting to create a stack that already exists.

                                                                                                                              +

                                                                                                                              Hierarchy (View Summary)

                                                                                                                              diff --git a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/classes/automation.StackNotFoundError.html b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/classes/automation.StackNotFoundError.html index 63bfca2442db..5e90591867a6 100644 --- a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/classes/automation.StackNotFoundError.html +++ b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/classes/automation.StackNotFoundError.html @@ -1,2 +1,2 @@ -StackNotFoundError | @pulumi/pulumi - v3.242.0
                                                                                                                              @pulumi/pulumi - v3.242.0
                                                                                                                                Preparing search index...

                                                                                                                                Class StackNotFoundError

                                                                                                                                An error thrown when attempting to select a stack that does not exist.

                                                                                                                                -

                                                                                                                                Hierarchy (View Summary)

                                                                                                                                +StackNotFoundError | @pulumi/pulumi - v3.243.0
                                                                                                                                @pulumi/pulumi - v3.243.0
                                                                                                                                  Preparing search index...

                                                                                                                                  Class StackNotFoundError

                                                                                                                                  An error thrown when attempting to select a stack that does not exist.

                                                                                                                                  +

                                                                                                                                  Hierarchy (View Summary)

                                                                                                                                  diff --git a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/classes/dynamic.Resource.html b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/classes/dynamic.Resource.html index 92a23bf7c7be..3f17b0c9d694 100644 --- a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/classes/dynamic.Resource.html +++ b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/classes/dynamic.Resource.html @@ -1,6 +1,6 @@ -Resource | @pulumi/pulumi - v3.242.0
                                                                                                                                  @pulumi/pulumi - v3.242.0
                                                                                                                                    Preparing search index...

                                                                                                                                    Class ResourceAbstract

                                                                                                                                    Resource represents a Pulumi resource that incorporates an inline +Resource | @pulumi/pulumi - v3.243.0

                                                                                                                                    @pulumi/pulumi - v3.243.0
                                                                                                                                      Preparing search index...

                                                                                                                                      Class ResourceAbstract

                                                                                                                                      Resource represents a Pulumi resource that incorporates an inline implementation of the Resource's CRUD operations.

                                                                                                                                      -

                                                                                                                                      Hierarchy (View Summary)

                                                                                                                                      Index

                                                                                                                                      Constructors

                                                                                                                                      Hierarchy (View Summary)

                                                                                                                                      Index

                                                                                                                                      Constructors

                                                                                                                                      Properties

                                                                                                                                      Methods

                                                                                                                                      getProvider @@ -13,12 +13,12 @@
                                                                                                                                    • Optionalopts: CustomResourceOptions

                                                                                                                                      A bag of options that control this resource's behavior.

                                                                                                                                    • Optionalmodule: string

                                                                                                                                      The module of the resource.

                                                                                                                                    • type: string = "Resource"

                                                                                                                                      The type of the resource.

                                                                                                                                      -
                                                                                                                                    • Returns dynamic.Resource

                                                                                                                                      Properties

                                                                                                                                      id: Output<string>

                                                                                                                                      The provider-assigned unique ID for this managed resource. It is set +

                                                                                                                                      Returns dynamic.Resource

                                                                                                                                      Properties

                                                                                                                                      id: Output<string>

                                                                                                                                      The provider-assigned unique ID for this managed resource. It is set during deployments and may be missing (undefined) during planning phases.

                                                                                                                                      -
                                                                                                                                      urn: Output<string>

                                                                                                                                      The stable logical URN used to distinctly address a resource, both before +

                                                                                                                                      urn: Output<string>

                                                                                                                                      The stable logical URN used to distinctly address a resource, both before and after deployments.

                                                                                                                                      -

                                                                                                                                      Methods

                                                                                                                                      Methods

                                                                                                                                      +

                                                                                                                                      Parameters

                                                                                                                                      Returns obj is CustomResource

                                                                                                                                      diff --git a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/classes/runtime.Stack.html b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/classes/runtime.Stack.html index c5b95d1e7615..c9bca57812ab 100644 --- a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/classes/runtime.Stack.html +++ b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/classes/runtime.Stack.html @@ -1,7 +1,7 @@ -Stack | @pulumi/pulumi - v3.242.0
                                                                                                                                      @pulumi/pulumi - v3.242.0
                                                                                                                                        Preparing search index...

                                                                                                                                        Class Stack

                                                                                                                                        Stack is the root resource for a Pulumi stack. Before invoking the +Stack | @pulumi/pulumi - v3.243.0

                                                                                                                                        @pulumi/pulumi - v3.243.0
                                                                                                                                          Preparing search index...

                                                                                                                                          Class Stack

                                                                                                                                          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.

                                                                                                                                          -

                                                                                                                                          Hierarchy (View Summary)

                                                                                                                                          Index

                                                                                                                                          Constructors

                                                                                                                                          Hierarchy (View Summary)

                                                                                                                                          Index

                                                                                                                                          Constructors

                                                                                                                                          Properties

                                                                                                                                          Methods

                                                                                                                                          Constructors

                                                                                                                                          Properties

                                                                                                                                          outputs: Output<Inputs>

                                                                                                                                          The outputs of this stack, if the init callback exited normally.

                                                                                                                                          -
                                                                                                                                          urn: Output<string>

                                                                                                                                          The stable logical URN used to distinctly address a resource, both before +

                                                                                                                                          Constructors

                                                                                                                                          Properties

                                                                                                                                          outputs: Output<Inputs>

                                                                                                                                          The outputs of this stack, if the init callback exited normally.

                                                                                                                                          +
                                                                                                                                          urn: Output<string>

                                                                                                                                          The stable logical URN used to distinctly address a resource, both before and after deployments.

                                                                                                                                          -

                                                                                                                                          Methods

                                                                                                                                          Methods

                                                                                                                                          • Registers synthetic outputs that a component has initialized, usually by +

                                                                                                                                          Returns Promise<Inputs>

                                                                                                                                          • Registers 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.

                                                                                                                                            -

                                                                                                                                            Parameters

                                                                                                                                            Returns void

                                                                                                                                          +

                                                                                                                                          Parameters

                                                                                                                                          Returns obj is ComponentResource<any>

                                                                                                                                          diff --git a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/enums/automation.DiffKind.html b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/enums/automation.DiffKind.html index d6ac0800eb13..07ca2bec8e66 100644 --- a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/enums/automation.DiffKind.html +++ b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/enums/automation.DiffKind.html @@ -1,15 +1,15 @@ -DiffKind | @pulumi/pulumi - v3.242.0
                                                                                                                                          @pulumi/pulumi - v3.242.0
                                                                                                                                            Preparing search index...

                                                                                                                                            Enumeration DiffKind

                                                                                                                                            A DiffKind describes the kind of difference between two values +DiffKind | @pulumi/pulumi - v3.243.0

                                                                                                                                            @pulumi/pulumi - v3.243.0
                                                                                                                                              Preparing search index...

                                                                                                                                              Enumeration DiffKind

                                                                                                                                              A DiffKind describes the kind of difference between two values reported in a diff.

                                                                                                                                              -
                                                                                                                                              Index

                                                                                                                                              Enumeration Members

                                                                                                                                              add +
                                                                                                                                              Index

                                                                                                                                              Enumeration Members

                                                                                                                                              add: "add"

                                                                                                                                              Indicates that the property was added.

                                                                                                                                              -
                                                                                                                                              addReplace: "add-replace"

                                                                                                                                              Indicates that the property was added and requires that the resource be replaced.

                                                                                                                                              -
                                                                                                                                              delete: "delete"

                                                                                                                                              Indicates that the property was deleted.

                                                                                                                                              -
                                                                                                                                              deleteReplace: "delete-replace"

                                                                                                                                              Indicates that the property was deleted and requires that the resource be replaced.

                                                                                                                                              -
                                                                                                                                              update: "update"

                                                                                                                                              Indicates that the property was updated.

                                                                                                                                              -
                                                                                                                                              updateReplace: "update-replace"

                                                                                                                                              Indicates that the property was updated and requires that the resource be replaced.

                                                                                                                                              -
                                                                                                                                              +
                                                                                                                                              addReplace: "add-replace"

                                                                                                                                              Indicates that the property was added and requires that the resource be replaced.

                                                                                                                                              +
                                                                                                                                              delete: "delete"

                                                                                                                                              Indicates that the property was deleted.

                                                                                                                                              +
                                                                                                                                              deleteReplace: "delete-replace"

                                                                                                                                              Indicates that the property was deleted and requires that the resource be replaced.

                                                                                                                                              +
                                                                                                                                              update: "update"

                                                                                                                                              Indicates that the property was updated.

                                                                                                                                              +
                                                                                                                                              updateReplace: "update-replace"

                                                                                                                                              Indicates that the property was updated and requires that the resource be replaced.

                                                                                                                                              +
                                                                                                                                              diff --git a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/functions/all.html b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/functions/all.html index a3ee3352aa8e..1bd694b859b9 100644 --- a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/functions/all.html +++ b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/functions/all.html @@ -1,4 +1,4 @@ -all | @pulumi/pulumi - v3.242.0
                                                                                                                                              @pulumi/pulumi - v3.242.0
                                                                                                                                                Preparing search index...

                                                                                                                                                Function all

                                                                                                                                                diff --git a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/functions/allAliases.html b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/functions/allAliases.html index bccd9149d96b..434836d630e5 100644 --- a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/functions/allAliases.html +++ b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/functions/allAliases.html @@ -1,7 +1,7 @@ -allAliases | @pulumi/pulumi - v3.242.0
                                                                                                                                                @pulumi/pulumi - v3.242.0
                                                                                                                                                  Preparing search index...

                                                                                                                                                  Function allAliases

                                                                                                                                                  • allAliases computes the full set of aliases for a child resource +allAliases | @pulumi/pulumi - v3.243.0

                                                                                                                                                    @pulumi/pulumi - v3.243.0
                                                                                                                                                      Preparing search index...

                                                                                                                                                      Function allAliases

                                                                                                                                                      • allAliases computes the full set of aliases for a child resource given a set of aliases applied to the child and parent resources. This includes the child resource's own aliases, as well as aliases inherited from the parent. If there are N child aliases, and M parent aliases, there will be (M+1)(N+1)-1 total aliases, or, as calculated in the logic below, N+(M(1+N)).

                                                                                                                                                        -

                                                                                                                                                        Parameters

                                                                                                                                                        • childAliases: Input<string | Alias>[]
                                                                                                                                                        • childName: string
                                                                                                                                                        • childType: string
                                                                                                                                                        • parent: Resource
                                                                                                                                                        • parentName: string

                                                                                                                                                        Returns Output<string>[]

                                                                                                                                                      +

                                                                                                                                                      Parameters

                                                                                                                                                      • childAliases: Input<string | Alias>[]
                                                                                                                                                      • childName: string
                                                                                                                                                      • childType: string
                                                                                                                                                      • parent: Resource
                                                                                                                                                      • parentName: string

                                                                                                                                                      Returns Output<string>[]

                                                                                                                                                    diff --git a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/functions/automation.fullyQualifiedStackName.html b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/functions/automation.fullyQualifiedStackName.html index 9638c90510c0..ba5ad9003f42 100644 --- a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/functions/automation.fullyQualifiedStackName.html +++ b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/functions/automation.fullyQualifiedStackName.html @@ -1,4 +1,4 @@ -fullyQualifiedStackName | @pulumi/pulumi - v3.242.0
                                                                                                                                                    @pulumi/pulumi - v3.242.0
                                                                                                                                                      Preparing search index...

                                                                                                                                                      Function fullyQualifiedStackName

                                                                                                                                                      • Returns a stack name formatted with the greatest possible specificity: +fullyQualifiedStackName | @pulumi/pulumi - v3.243.0

                                                                                                                                                        @pulumi/pulumi - v3.243.0
                                                                                                                                                          Preparing search index...

                                                                                                                                                          Function fullyQualifiedStackName

                                                                                                                                                          • Returns a stack name formatted with the greatest possible specificity: org/project/stack or user/project/stack Using this format avoids ambiguity in stack identity guards creating or selecting the wrong stack.

                                                                                                                                                            Note: legacy DIY backends (local file, S3, Azure Blob) do not support @@ -10,4 +10,4 @@

                                                                                                                                                            Parameters

                                                                                                                                                            • org: string

                                                                                                                                                              The org (or user) that contains the Stack.

                                                                                                                                                            • project: string

                                                                                                                                                              The project that parents the Stack.

                                                                                                                                                            • stack: string

                                                                                                                                                              The name of the Stack.

                                                                                                                                                              -

                                                                                                                                                            Returns string

                                                                                                                                                          +

                                                                                                                                                        Returns string

                                                                                                                                                        diff --git a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/functions/concat.html b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/functions/concat.html index 8b3eefe5a04b..fa23bbb42048 100644 --- a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/functions/concat.html +++ b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/functions/concat.html @@ -1,8 +1,8 @@ -concat | @pulumi/pulumi - v3.242.0
                                                                                                                                                        @pulumi/pulumi - v3.242.0
                                                                                                                                                          Preparing search index...

                                                                                                                                                          Function concat

                                                                                                                                                          • concat takes a sequence of Inputs, stringifies each one, and +concat | @pulumi/pulumi - v3.243.0

                                                                                                                                                            @pulumi/pulumi - v3.243.0
                                                                                                                                                              Preparing search index...

                                                                                                                                                              Function concat

                                                                                                                                                              • concat takes a sequence of Inputs, stringifies each one, and concatenates all values into one final string. Individual inputs can be any sort of input value: they can be promises, outputs, or just plain JavaScript values. Use this function like so:

                                                                                                                                                                     // 'server' and 'loadBalancer' are both resources that expose [Output] properties.
                                                                                                                                                                let val: Output<string> = pulumi.concat("http://", server.hostname, ":", loadBalancer.port);
                                                                                                                                                                -

                                                                                                                                                                Parameters

                                                                                                                                                                • ...params: any[]

                                                                                                                                                                Returns Output<string>

                                                                                                                                                              +

                                                                                                                                                              Parameters

                                                                                                                                                              • ...params: any[]

                                                                                                                                                              Returns Output<string>

                                                                                                                                                            diff --git a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/functions/containsUnknowns.html b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/functions/containsUnknowns.html index 23c418b3af87..7eedd7b6a554 100644 --- a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/functions/containsUnknowns.html +++ b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/functions/containsUnknowns.html @@ -1,2 +1,2 @@ -containsUnknowns | @pulumi/pulumi - v3.242.0
                                                                                                                                                            @pulumi/pulumi - v3.242.0
                                                                                                                                                              Preparing search index...

                                                                                                                                                              Function containsUnknowns

                                                                                                                                                              • Returns true if the given value is or contains unknown values.

                                                                                                                                                                -

                                                                                                                                                                Parameters

                                                                                                                                                                • value: any

                                                                                                                                                                Returns boolean

                                                                                                                                                              +containsUnknowns | @pulumi/pulumi - v3.243.0
                                                                                                                                                              @pulumi/pulumi - v3.243.0
                                                                                                                                                                Preparing search index...

                                                                                                                                                                Function containsUnknowns

                                                                                                                                                                • Returns true if the given value is or contains unknown values.

                                                                                                                                                                  +

                                                                                                                                                                  Parameters

                                                                                                                                                                  • value: any

                                                                                                                                                                  Returns boolean

                                                                                                                                                                diff --git a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/functions/createUrn.html b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/functions/createUrn.html index 318d78d0ec49..1313d8a73379 100644 --- a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/functions/createUrn.html +++ b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/functions/createUrn.html @@ -1,3 +1,3 @@ -createUrn | @pulumi/pulumi - v3.242.0
                                                                                                                                                                @pulumi/pulumi - v3.242.0
                                                                                                                                                                  Preparing search index...

                                                                                                                                                                  Function createUrn

                                                                                                                                                                  • createUrn computes a URN from the combination of a resource name, +createUrn | @pulumi/pulumi - v3.243.0

                                                                                                                                                                    @pulumi/pulumi - v3.243.0
                                                                                                                                                                      Preparing search index...

                                                                                                                                                                      Function createUrn

                                                                                                                                                                      • createUrn computes a URN from the combination of a resource name, resource type, optional parent, optional project and optional stack.

                                                                                                                                                                        -

                                                                                                                                                                        Parameters

                                                                                                                                                                        • name: Input<string>
                                                                                                                                                                        • type: Input<string>
                                                                                                                                                                        • Optionalparent: Resource | Input<string>
                                                                                                                                                                        • Optionalproject: string
                                                                                                                                                                        • Optionalstack: string

                                                                                                                                                                        Returns Output<string>

                                                                                                                                                                      +

                                                                                                                                                                      Parameters

                                                                                                                                                                      • name: Input<string>
                                                                                                                                                                      • type: Input<string>
                                                                                                                                                                      • Optionalparent: Resource | Input<string>
                                                                                                                                                                      • Optionalproject: string
                                                                                                                                                                      • Optionalstack: string

                                                                                                                                                                      Returns Output<string>

                                                                                                                                                                    diff --git a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/functions/deferredOutput.html b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/functions/deferredOutput.html index 05bb2003e072..961d9d60693f 100644 --- a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/functions/deferredOutput.html +++ b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/functions/deferredOutput.html @@ -1,2 +1,2 @@ -deferredOutput | @pulumi/pulumi - v3.242.0
                                                                                                                                                                    @pulumi/pulumi - v3.242.0
                                                                                                                                                                      Preparing search index...

                                                                                                                                                                      Function deferredOutput

                                                                                                                                                                      +deferredOutput | @pulumi/pulumi - v3.243.0
                                                                                                                                                                      @pulumi/pulumi - v3.243.0
                                                                                                                                                                        Preparing search index...

                                                                                                                                                                        Function deferredOutput

                                                                                                                                                                        diff --git a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/functions/getAllResources.html b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/functions/getAllResources.html index f5f615d47102..933a892eb94d 100644 --- a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/functions/getAllResources.html +++ b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/functions/getAllResources.html @@ -1 +1 @@ -getAllResources | @pulumi/pulumi - v3.242.0
                                                                                                                                                                        @pulumi/pulumi - v3.242.0
                                                                                                                                                                          Preparing search index...

                                                                                                                                                                          Function getAllResources

                                                                                                                                                                          +getAllResources | @pulumi/pulumi - v3.243.0
                                                                                                                                                                          @pulumi/pulumi - v3.243.0
                                                                                                                                                                            Preparing search index...

                                                                                                                                                                            Function getAllResources

                                                                                                                                                                            diff --git a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/functions/getOrganization.html b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/functions/getOrganization.html index 3c9e39980811..fb692631bd86 100644 --- a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/functions/getOrganization.html +++ b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/functions/getOrganization.html @@ -1,2 +1,2 @@ -getOrganization | @pulumi/pulumi - v3.242.0
                                                                                                                                                                            @pulumi/pulumi - v3.242.0
                                                                                                                                                                              Preparing search index...

                                                                                                                                                                              Function getOrganization

                                                                                                                                                                              +getOrganization | @pulumi/pulumi - v3.243.0
                                                                                                                                                                              @pulumi/pulumi - v3.243.0
                                                                                                                                                                                Preparing search index...

                                                                                                                                                                                Function getOrganization

                                                                                                                                                                                diff --git a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/functions/getProject.html b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/functions/getProject.html index d7f1e9461474..18673921be90 100644 --- a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/functions/getProject.html +++ b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/functions/getProject.html @@ -1,2 +1,2 @@ -getProject | @pulumi/pulumi - v3.242.0
                                                                                                                                                                                @pulumi/pulumi - v3.242.0
                                                                                                                                                                                  Preparing search index...

                                                                                                                                                                                  Function getProject

                                                                                                                                                                                  +getProject | @pulumi/pulumi - v3.243.0
                                                                                                                                                                                  @pulumi/pulumi - v3.243.0
                                                                                                                                                                                    Preparing search index...

                                                                                                                                                                                    Function getProject

                                                                                                                                                                                    diff --git a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/functions/getRootDirectory.html b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/functions/getRootDirectory.html index bfa02fea6941..696739d827b9 100644 --- a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/functions/getRootDirectory.html +++ b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/functions/getRootDirectory.html @@ -1,2 +1,2 @@ -getRootDirectory | @pulumi/pulumi - v3.242.0
                                                                                                                                                                                    @pulumi/pulumi - v3.242.0
                                                                                                                                                                                      Preparing search index...

                                                                                                                                                                                      Function getRootDirectory

                                                                                                                                                                                      +getRootDirectory | @pulumi/pulumi - v3.243.0
                                                                                                                                                                                      @pulumi/pulumi - v3.243.0
                                                                                                                                                                                        Preparing search index...

                                                                                                                                                                                        Function getRootDirectory

                                                                                                                                                                                        diff --git a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/functions/getStack.html b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/functions/getStack.html index 62efc69c4f96..679276a08a11 100644 --- a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/functions/getStack.html +++ b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/functions/getStack.html @@ -1,2 +1,2 @@ -getStack | @pulumi/pulumi - v3.242.0
                                                                                                                                                                                        @pulumi/pulumi - v3.242.0
                                                                                                                                                                                          Preparing search index...

                                                                                                                                                                                          Function getStack

                                                                                                                                                                                          +getStack | @pulumi/pulumi - v3.243.0
                                                                                                                                                                                          @pulumi/pulumi - v3.243.0
                                                                                                                                                                                            Preparing search index...

                                                                                                                                                                                            Function getStack

                                                                                                                                                                                            diff --git a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/functions/interpolate.html b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/functions/interpolate.html index af397f349bf0..e51d07b2ef84 100644 --- a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/functions/interpolate.html +++ b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/functions/interpolate.html @@ -1,8 +1,8 @@ -interpolate | @pulumi/pulumi - v3.242.0
                                                                                                                                                                                            @pulumi/pulumi - v3.242.0
                                                                                                                                                                                              Preparing search index...

                                                                                                                                                                                              Function interpolate

                                                                                                                                                                                              • interpolate is similar to concat but is designed to be used +interpolate | @pulumi/pulumi - v3.243.0

                                                                                                                                                                                                @pulumi/pulumi - v3.243.0
                                                                                                                                                                                                  Preparing search index...

                                                                                                                                                                                                  Function interpolate

                                                                                                                                                                                                  • interpolate is similar to concat but is designed to be used as a tagged template expression, e.g.:

                                                                                                                                                                                                         // 'server' and 'loadBalancer' are both resources that expose [Output] properties.
                                                                                                                                                                                                    let val: Output<string> = pulumi.interpolate `http://${server.hostname}:${loadBalancer.port}`

                                                                                                                                                                                                    As with concat, the placeholders between ${} can be any Inputs: promises, outputs, or just plain JavaScript values.

                                                                                                                                                                                                    -

                                                                                                                                                                                                    Parameters

                                                                                                                                                                                                    • literals: TemplateStringsArray
                                                                                                                                                                                                    • ...placeholders: any[]

                                                                                                                                                                                                    Returns Output<string>

                                                                                                                                                                                                  +

                                                                                                                                                                                                  Parameters

                                                                                                                                                                                                  • literals: TemplateStringsArray
                                                                                                                                                                                                  • ...placeholders: any[]

                                                                                                                                                                                                  Returns Output<string>

                                                                                                                                                                                                diff --git a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/functions/isGrpcError.html b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/functions/isGrpcError.html index a084cabe04a4..20961d00ac7d 100644 --- a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/functions/isGrpcError.html +++ b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/functions/isGrpcError.html @@ -1 +1 @@ -isGrpcError | @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                  Preparing search index...

                                                                                                                                                                                                  Function isGrpcError

                                                                                                                                                                                                  +isGrpcError | @pulumi/pulumi - v3.243.0
                                                                                                                                                                                                  @pulumi/pulumi - v3.243.0
                                                                                                                                                                                                    Preparing search index...

                                                                                                                                                                                                    Function isGrpcError

                                                                                                                                                                                                    diff --git a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/functions/isSecret.html b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/functions/isSecret.html index 449501f08c70..5d0aa6435fab 100644 --- a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/functions/isSecret.html +++ b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/functions/isSecret.html @@ -1,3 +1,3 @@ -isSecret | @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                    @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                      Preparing search index...

                                                                                                                                                                                                      Function isSecret

                                                                                                                                                                                                      diff --git a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/functions/isUnknown.html b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/functions/isUnknown.html index 21d4674dea0c..e1773e15b5d7 100644 --- a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/functions/isUnknown.html +++ b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/functions/isUnknown.html @@ -1,2 +1,2 @@ -isUnknown | @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                      @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                        Preparing search index...

                                                                                                                                                                                                        Function isUnknown

                                                                                                                                                                                                        +isUnknown | @pulumi/pulumi - v3.243.0
                                                                                                                                                                                                        @pulumi/pulumi - v3.243.0
                                                                                                                                                                                                          Preparing search index...

                                                                                                                                                                                                          Function isUnknown

                                                                                                                                                                                                          diff --git a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/functions/iterable.groupBy.html b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/functions/iterable.groupBy.html index ba05d457e2f8..b629aa21c014 100644 --- a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/functions/iterable.groupBy.html +++ b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/functions/iterable.groupBy.html @@ -1,4 +1,4 @@ -groupBy | @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                          @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                            Preparing search index...

                                                                                                                                                                                                            Function groupBy

                                                                                                                                                                                                            • groupBy takes an array of T values, and a selector that prduces +groupBy | @pulumi/pulumi - v3.243.0

                                                                                                                                                                                                              @pulumi/pulumi - v3.243.0
                                                                                                                                                                                                                Preparing search index...

                                                                                                                                                                                                                Function groupBy

                                                                                                                                                                                                                • groupBy takes an array of T values, and a selector that prduces key/value pairs from those inputs, and converts this array into an output object, with those keys, and where each property is an array of values, in the case that the same key shows up multiple times in the input.

                                                                                                                                                                                                                  @@ -8,4 +8,4 @@

                                                                                                                                                                                                                  and whose selector is roughly (e) => [e.s, e.n], the resulting object will be

                                                                                                                                                                                                                  { "a": [1, 2], "b": [1] }
                                                                                                                                                                                                                   
                                                                                                                                                                                                                  -

                                                                                                                                                                                                                  Type Parameters

                                                                                                                                                                                                                  • T
                                                                                                                                                                                                                  • V

                                                                                                                                                                                                                  Parameters

                                                                                                                                                                                                                  Returns Output<{ [key: string]: V[] }>

                                                                                                                                                                                                                +

                                                                                                                                                                                                                Type Parameters

                                                                                                                                                                                                                • T
                                                                                                                                                                                                                • V

                                                                                                                                                                                                                Parameters

                                                                                                                                                                                                                Returns Output<{ [key: string]: V[] }>

                                                                                                                                                                                                              diff --git a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/functions/iterable.toObject.html b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/functions/iterable.toObject.html index e3c3c1503754..4be3f459ad60 100644 --- a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/functions/iterable.toObject.html +++ b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/functions/iterable.toObject.html @@ -1,4 +1,4 @@ -toObject | @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                              @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                Preparing search index...

                                                                                                                                                                                                                Function toObject

                                                                                                                                                                                                                diff --git a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/functions/jsonParse.html b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/functions/jsonParse.html index 38f1b71d9070..9a5f9c579047 100644 --- a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/functions/jsonParse.html +++ b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/functions/jsonParse.html @@ -1,2 +1,2 @@ -jsonParse | @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                  Preparing search index...

                                                                                                                                                                                                                  Function jsonParse

                                                                                                                                                                                                                  • jsonParse Uses JSON.parse to deserialize the given Input JSON string into a value.

                                                                                                                                                                                                                    -

                                                                                                                                                                                                                    Parameters

                                                                                                                                                                                                                    • text: Input<string>
                                                                                                                                                                                                                    • Optionalreviver: (this: any, key: string, value: any) => any

                                                                                                                                                                                                                    Returns Output<any>

                                                                                                                                                                                                                  +jsonParse | @pulumi/pulumi - v3.243.0
                                                                                                                                                                                                                  @pulumi/pulumi - v3.243.0
                                                                                                                                                                                                                    Preparing search index...

                                                                                                                                                                                                                    Function jsonParse

                                                                                                                                                                                                                    • jsonParse Uses JSON.parse to deserialize the given Input JSON string into a value.

                                                                                                                                                                                                                      +

                                                                                                                                                                                                                      Parameters

                                                                                                                                                                                                                      • text: Input<string>
                                                                                                                                                                                                                      • Optionalreviver: (this: any, key: string, value: any) => any

                                                                                                                                                                                                                      Returns Output<any>

                                                                                                                                                                                                                    diff --git a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/functions/jsonStringify.html b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/functions/jsonStringify.html index 68fe16b788e1..6336a13c76be 100644 --- a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/functions/jsonStringify.html +++ b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/functions/jsonStringify.html @@ -1,3 +1,3 @@ -jsonStringify | @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                    @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                      Preparing search index...

                                                                                                                                                                                                                      Function jsonStringify

                                                                                                                                                                                                                      • jsonStringify uses JSON.stringify to serialize the given +jsonStringify | @pulumi/pulumi - v3.243.0

                                                                                                                                                                                                                        @pulumi/pulumi - v3.243.0
                                                                                                                                                                                                                          Preparing search index...

                                                                                                                                                                                                                          Function jsonStringify

                                                                                                                                                                                                                          • jsonStringify uses JSON.stringify to serialize the given Input value into a JSON string.

                                                                                                                                                                                                                            -

                                                                                                                                                                                                                            Parameters

                                                                                                                                                                                                                            • obj: any
                                                                                                                                                                                                                            • Optionalreplacer: (this: any, key: string, value: any) => any
                                                                                                                                                                                                                            • Optionalspace: string | number

                                                                                                                                                                                                                            Returns Output<string>

                                                                                                                                                                                                                          +

                                                                                                                                                                                                                          Parameters

                                                                                                                                                                                                                          • obj: any
                                                                                                                                                                                                                          • Optionalreplacer: (this: any, key: string, value: any) => any
                                                                                                                                                                                                                          • Optionalspace: string | number

                                                                                                                                                                                                                          Returns Output<string>

                                                                                                                                                                                                                        diff --git a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/functions/log.debug.html b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/functions/log.debug.html index 6c3a0f445c0f..fec154ea0055 100644 --- a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/functions/log.debug.html +++ b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/functions/log.debug.html @@ -1,2 +1,2 @@ -debug | @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                        @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                          Preparing search index...

                                                                                                                                                                                                                          Function debug

                                                                                                                                                                                                                          • Logs a debug-level message that is generally hidden from end-users.

                                                                                                                                                                                                                            -

                                                                                                                                                                                                                            Parameters

                                                                                                                                                                                                                            • msg: string
                                                                                                                                                                                                                            • Optionalresource: Resource
                                                                                                                                                                                                                            • OptionalstreamId: number
                                                                                                                                                                                                                            • Optionalephemeral: boolean

                                                                                                                                                                                                                            Returns Promise<void>

                                                                                                                                                                                                                          +debug | @pulumi/pulumi - v3.243.0
                                                                                                                                                                                                                          @pulumi/pulumi - v3.243.0
                                                                                                                                                                                                                            Preparing search index...

                                                                                                                                                                                                                            Function debug

                                                                                                                                                                                                                            • Logs a debug-level message that is generally hidden from end-users.

                                                                                                                                                                                                                              +

                                                                                                                                                                                                                              Parameters

                                                                                                                                                                                                                              • msg: string
                                                                                                                                                                                                                              • Optionalresource: Resource
                                                                                                                                                                                                                              • OptionalstreamId: number
                                                                                                                                                                                                                              • Optionalephemeral: boolean

                                                                                                                                                                                                                              Returns Promise<void>

                                                                                                                                                                                                                            diff --git a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/functions/log.error.html b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/functions/log.error.html index 23d6622ecb27..5f31b0cfe706 100644 --- a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/functions/log.error.html +++ b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/functions/log.error.html @@ -1,3 +1,3 @@ -error | @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                            @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                              Preparing search index...

                                                                                                                                                                                                                              Function error

                                                                                                                                                                                                                              • Logs a fatal condition. Consider raising an exception after calling error to +error | @pulumi/pulumi - v3.243.0

                                                                                                                                                                                                                                @pulumi/pulumi - v3.243.0
                                                                                                                                                                                                                                  Preparing search index...

                                                                                                                                                                                                                                  Function error

                                                                                                                                                                                                                                  • Logs a fatal condition. Consider raising an exception after calling error to stop the Pulumi program.

                                                                                                                                                                                                                                    -

                                                                                                                                                                                                                                    Parameters

                                                                                                                                                                                                                                    • msg: string
                                                                                                                                                                                                                                    • Optionalresource: Resource
                                                                                                                                                                                                                                    • OptionalstreamId: number
                                                                                                                                                                                                                                    • Optionalephemeral: boolean

                                                                                                                                                                                                                                    Returns Promise<void>

                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                  Parameters

                                                                                                                                                                                                                                  • msg: string
                                                                                                                                                                                                                                  • Optionalresource: Resource
                                                                                                                                                                                                                                  • OptionalstreamId: number
                                                                                                                                                                                                                                  • Optionalephemeral: boolean

                                                                                                                                                                                                                                  Returns Promise<void>

                                                                                                                                                                                                                                diff --git a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/functions/log.hasErrors.html b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/functions/log.hasErrors.html index bad58bbb2fca..f65d6af3e4db 100644 --- a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/functions/log.hasErrors.html +++ b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/functions/log.hasErrors.html @@ -1,2 +1,2 @@ -hasErrors | @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                  Preparing search index...

                                                                                                                                                                                                                                  Function hasErrors

                                                                                                                                                                                                                                  +hasErrors | @pulumi/pulumi - v3.243.0
                                                                                                                                                                                                                                  @pulumi/pulumi - v3.243.0
                                                                                                                                                                                                                                    Preparing search index...

                                                                                                                                                                                                                                    Function hasErrors

                                                                                                                                                                                                                                    diff --git a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/functions/log.info.html b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/functions/log.info.html index 87ea9cd9ba99..f74787596672 100644 --- a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/functions/log.info.html +++ b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/functions/log.info.html @@ -1,3 +1,3 @@ -info | @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                    @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                      Preparing search index...

                                                                                                                                                                                                                                      Function info

                                                                                                                                                                                                                                      • Logs an informational message that is generally printed to standard output +info | @pulumi/pulumi - v3.243.0

                                                                                                                                                                                                                                        @pulumi/pulumi - v3.243.0
                                                                                                                                                                                                                                          Preparing search index...

                                                                                                                                                                                                                                          Function info

                                                                                                                                                                                                                                          • Logs an informational message that is generally printed to standard output during resource operations.

                                                                                                                                                                                                                                            -

                                                                                                                                                                                                                                            Parameters

                                                                                                                                                                                                                                            • msg: string
                                                                                                                                                                                                                                            • Optionalresource: Resource
                                                                                                                                                                                                                                            • OptionalstreamId: number
                                                                                                                                                                                                                                            • Optionalephemeral: boolean

                                                                                                                                                                                                                                            Returns Promise<void>

                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                          Parameters

                                                                                                                                                                                                                                          • msg: string
                                                                                                                                                                                                                                          • Optionalresource: Resource
                                                                                                                                                                                                                                          • OptionalstreamId: number
                                                                                                                                                                                                                                          • Optionalephemeral: boolean

                                                                                                                                                                                                                                          Returns Promise<void>

                                                                                                                                                                                                                                        diff --git a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/functions/log.warn.html b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/functions/log.warn.html index f8745dec8929..94b79da7715e 100644 --- a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/functions/log.warn.html +++ b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/functions/log.warn.html @@ -1,3 +1,3 @@ -warn | @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                        @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                          Preparing search index...

                                                                                                                                                                                                                                          Function warn

                                                                                                                                                                                                                                          • Logs a warning to indicate that something went wrong, but not +warn | @pulumi/pulumi - v3.243.0

                                                                                                                                                                                                                                            @pulumi/pulumi - v3.243.0
                                                                                                                                                                                                                                              Preparing search index...

                                                                                                                                                                                                                                              Function warn

                                                                                                                                                                                                                                              • Logs a warning to indicate that something went wrong, but not catastrophically so.

                                                                                                                                                                                                                                                -

                                                                                                                                                                                                                                                Parameters

                                                                                                                                                                                                                                                • msg: string
                                                                                                                                                                                                                                                • Optionalresource: Resource
                                                                                                                                                                                                                                                • OptionalstreamId: number
                                                                                                                                                                                                                                                • Optionalephemeral: boolean

                                                                                                                                                                                                                                                Returns Promise<void>

                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                              Parameters

                                                                                                                                                                                                                                              • msg: string
                                                                                                                                                                                                                                              • Optionalresource: Resource
                                                                                                                                                                                                                                              • OptionalstreamId: number
                                                                                                                                                                                                                                              • Optionalephemeral: boolean

                                                                                                                                                                                                                                              Returns Promise<void>

                                                                                                                                                                                                                                            diff --git a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/functions/mergeOptions.html b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/functions/mergeOptions.html index b0c890b075db..aca6d65aea7f 100644 --- a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/functions/mergeOptions.html +++ b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/functions/mergeOptions.html @@ -1,4 +1,4 @@ -mergeOptions | @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                            @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                              Preparing search index...

                                                                                                                                                                                                                                              Function mergeOptions

                                                                                                                                                                                                                                              Parameters

                                                                                                                                                                                                                                              Returns ComponentResourceOptions

                                                                                                                                                                                                                                            • mergeOptions takes two ResourceOptions values and produces a new +

                                                                                                                                                                                                                                              Parameters

                                                                                                                                                                                                                                              Returns ComponentResourceOptions

                                                                                                                                                                                                                                            • mergeOptions takes two ResourceOptions values and produces a new ResourceOptions with the respective properties of opts2 merged over the same properties in opts1. The original options objects will be unchanged.

                                                                                                                                                                                                                                              Conceptually property merging follows these basic rules:

                                                                                                                                                                                                                                              @@ -67,4 +67,4 @@ always treated as collections, even if only a single value was provided.

                                                                                                                                                                                                                                            • -

                                                                                                                                                                                                                                              Parameters

                                                                                                                                                                                                                                              Returns ResourceOptions

                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                              Parameters

                                                                                                                                                                                                                                              Returns ResourceOptions

                                                                                                                                                                                                                                              diff --git a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/functions/output.html b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/functions/output.html index 18f1b7389096..f979b28eefa2 100644 --- a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/functions/output.html +++ b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/functions/output.html @@ -1,13 +1,13 @@ -output | @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                              @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                Preparing search index...

                                                                                                                                                                                                                                                Function output

                                                                                                                                                                                                                                                • output takes any Input value and converts it into an +output | @pulumi/pulumi - v3.243.0

                                                                                                                                                                                                                                                  @pulumi/pulumi - v3.243.0
                                                                                                                                                                                                                                                    Preparing search index...

                                                                                                                                                                                                                                                    Function output

                                                                                                                                                                                                                                                    • output takes any Input value and converts it into an Output, deeply unwrapping nested Input values as necessary.

                                                                                                                                                                                                                                                      The expected way to use this function is like so:

                                                                                                                                                                                                                                                           var transformed = pulumi.output(someVal).apply(unwrapped => {
                                                                                                                                                                                                                                                      // Do whatever you want now. 'unwrapped' will contain no outputs/promises inside
                                                                                                                                                                                                                                                      // here, so you can easily do whatever sort of transformation is most convenient.
                                                                                                                                                                                                                                                      });

                                                                                                                                                                                                                                                      // the result can be passed to another Resource. The dependency information will be
                                                                                                                                                                                                                                                      // properly maintained.
                                                                                                                                                                                                                                                      var someResource = new SomeResource(name, { data: transformed ... });
                                                                                                                                                                                                                                                      -

                                                                                                                                                                                                                                                      Type Parameters

                                                                                                                                                                                                                                                      • T

                                                                                                                                                                                                                                                      Parameters

                                                                                                                                                                                                                                                      Returns Output<Unwrap<T>>

                                                                                                                                                                                                                                                    • output takes any Input value and converts it into an +

                                                                                                                                                                                                                                                      Type Parameters

                                                                                                                                                                                                                                                      • T

                                                                                                                                                                                                                                                      Parameters

                                                                                                                                                                                                                                                      Returns Output<Unwrap<T>>

                                                                                                                                                                                                                                                    • output takes any Input value and converts it into an Output, deeply unwrapping nested Input values as necessary.

                                                                                                                                                                                                                                                      The expected way to use this function is like so:

                                                                                                                                                                                                                                                           var transformed = pulumi.output(someVal).apply(unwrapped => {
                                                                                                                                                                                                                                                      // Do whatever you want now. 'unwrapped' will contain no outputs/promises inside
                                                                                                                                                                                                                                                      // here, so you can easily do whatever sort of transformation is most convenient.
                                                                                                                                                                                                                                                      });

                                                                                                                                                                                                                                                      // the result can be passed to another Resource. The dependency information will be
                                                                                                                                                                                                                                                      // properly maintained.
                                                                                                                                                                                                                                                      var someResource = new SomeResource(name, { data: transformed ... });
                                                                                                                                                                                                                                                      -

                                                                                                                                                                                                                                                      Type Parameters

                                                                                                                                                                                                                                                      • T

                                                                                                                                                                                                                                                      Parameters

                                                                                                                                                                                                                                                      Returns Output<Unwrap<T> | undefined>

                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                    Type Parameters

                                                                                                                                                                                                                                                    • T

                                                                                                                                                                                                                                                    Parameters

                                                                                                                                                                                                                                                    Returns Output<Unwrap<T> | undefined>

                                                                                                                                                                                                                                                  diff --git a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/functions/provider.main.html b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/functions/provider.main.html index 6cffe38f38f1..db95373478f1 100644 --- a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/functions/provider.main.html +++ b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/functions/provider.main.html @@ -1 +1 @@ -main | @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                  @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                    Preparing search index...

                                                                                                                                                                                                                                                    Function main

                                                                                                                                                                                                                                                    +main | @pulumi/pulumi - v3.243.0
                                                                                                                                                                                                                                                    @pulumi/pulumi - v3.243.0
                                                                                                                                                                                                                                                      Preparing search index...

                                                                                                                                                                                                                                                      Function main

                                                                                                                                                                                                                                                      diff --git a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/functions/requirePulumiVersion.html b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/functions/requirePulumiVersion.html index fdc62b6a6a6c..d4dfe4b6e9c5 100644 --- a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/functions/requirePulumiVersion.html +++ b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/functions/requirePulumiVersion.html @@ -1,7 +1,7 @@ -requirePulumiVersion | @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                      @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                        Preparing search index...

                                                                                                                                                                                                                                                        Function requirePulumiVersion

                                                                                                                                                                                                                                                        • Checks if the engine we are connected to is compatible with the passed in version range. If the version is not +requirePulumiVersion | @pulumi/pulumi - v3.243.0

                                                                                                                                                                                                                                                          @pulumi/pulumi - v3.243.0
                                                                                                                                                                                                                                                            Preparing search index...

                                                                                                                                                                                                                                                            Function requirePulumiVersion

                                                                                                                                                                                                                                                            • Checks if the engine we are connected to is compatible with the passed in version range. If the version is not compatible with the specified range, an exception is raised.

                                                                                                                                                                                                                                                              Parameters

                                                                                                                                                                                                                                                              • range: string

                                                                                                                                                                                                                                                                The range to check. The supported syntax for the range is that of https://pkg.go.dev/github.com/blang/semver#ParseRange. For example ">=3.0.0", or "!3.1.2". Ranges can be AND-ed together by concatenating with spaces ">=3.5.0 !3.7.7", meaning greater-or-equal to 3.5.0 and not exactly 3.7.7. Ranges can be OR-ed with the || operator: "<3.4.0 || >3.8.0", meaning less-than 3.4.0 or greater-than 3.8.0.

                                                                                                                                                                                                                                                                -

                                                                                                                                                                                                                                                              Returns Promise<void>

                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                          Returns Promise<void>

                                                                                                                                                                                                                                                          diff --git a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/functions/resourceName.html b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/functions/resourceName.html index 83f9b2183d58..15b5f000de91 100644 --- a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/functions/resourceName.html +++ b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/functions/resourceName.html @@ -1,2 +1,2 @@ -resourceName | @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                          @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                            Preparing search index...

                                                                                                                                                                                                                                                            Function resourceName

                                                                                                                                                                                                                                                            +resourceName | @pulumi/pulumi - v3.243.0
                                                                                                                                                                                                                                                            @pulumi/pulumi - v3.243.0
                                                                                                                                                                                                                                                              Preparing search index...

                                                                                                                                                                                                                                                              Function resourceName

                                                                                                                                                                                                                                                              diff --git a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/functions/resourceType.html b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/functions/resourceType.html index 18a87bcae1b1..474c8eb0bbad 100644 --- a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/functions/resourceType.html +++ b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/functions/resourceType.html @@ -1,2 +1,2 @@ -resourceType | @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                              @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                Preparing search index...

                                                                                                                                                                                                                                                                Function resourceType

                                                                                                                                                                                                                                                                +resourceType | @pulumi/pulumi - v3.243.0
                                                                                                                                                                                                                                                                @pulumi/pulumi - v3.243.0
                                                                                                                                                                                                                                                                  Preparing search index...

                                                                                                                                                                                                                                                                  Function resourceType

                                                                                                                                                                                                                                                                  diff --git a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/functions/runtime.allConfig.html b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/functions/runtime.allConfig.html index 154ad339bffa..c79ae27dd9d7 100644 --- a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/functions/runtime.allConfig.html +++ b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/functions/runtime.allConfig.html @@ -1,2 +1,2 @@ -allConfig | @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                  @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                    Preparing search index...

                                                                                                                                                                                                                                                                    Function allConfig

                                                                                                                                                                                                                                                                    +allConfig | @pulumi/pulumi - v3.243.0
                                                                                                                                                                                                                                                                    @pulumi/pulumi - v3.243.0
                                                                                                                                                                                                                                                                      Preparing search index...

                                                                                                                                                                                                                                                                      Function allConfig

                                                                                                                                                                                                                                                                      diff --git a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/functions/runtime.awaitStackRegistrations.html b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/functions/runtime.awaitStackRegistrations.html index f85e9a11a04b..9a214c8bdd8d 100644 --- a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/functions/runtime.awaitStackRegistrations.html +++ b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/functions/runtime.awaitStackRegistrations.html @@ -1,2 +1,2 @@ -awaitStackRegistrations | @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                      @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                        Preparing search index...

                                                                                                                                                                                                                                                                        Function awaitStackRegistrations

                                                                                                                                                                                                                                                                        +awaitStackRegistrations | @pulumi/pulumi - v3.243.0
                                                                                                                                                                                                                                                                        @pulumi/pulumi - v3.243.0
                                                                                                                                                                                                                                                                          Preparing search index...

                                                                                                                                                                                                                                                                          Function awaitStackRegistrations

                                                                                                                                                                                                                                                                          diff --git a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/functions/runtime.cacheDynamicProviders.html b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/functions/runtime.cacheDynamicProviders.html index b8dbda3a4728..eca75468cf95 100644 --- a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/functions/runtime.cacheDynamicProviders.html +++ b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/functions/runtime.cacheDynamicProviders.html @@ -1,3 +1,3 @@ -cacheDynamicProviders | @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                          @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                            Preparing search index...

                                                                                                                                                                                                                                                                            Function cacheDynamicProviders

                                                                                                                                                                                                                                                                            • Returns true if we will cache serialized dynamic providers on the program +cacheDynamicProviders | @pulumi/pulumi - v3.243.0

                                                                                                                                                                                                                                                                              @pulumi/pulumi - v3.243.0
                                                                                                                                                                                                                                                                                Preparing search index...

                                                                                                                                                                                                                                                                                Function cacheDynamicProviders

                                                                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                                                                Returns boolean

                                                                                                                                                                                                                                                                              diff --git a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/functions/runtime.call.html b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/functions/runtime.call.html index ef6e2c3dbae2..5218a3fad40e 100644 --- a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/functions/runtime.call.html +++ b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/functions/runtime.call.html @@ -1,2 +1,2 @@ -call | @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                              @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                Preparing search index...

                                                                                                                                                                                                                                                                                Function call

                                                                                                                                                                                                                                                                                +call | @pulumi/pulumi - v3.243.0
                                                                                                                                                                                                                                                                                @pulumi/pulumi - v3.243.0
                                                                                                                                                                                                                                                                                  Preparing search index...

                                                                                                                                                                                                                                                                                  Function call

                                                                                                                                                                                                                                                                                  diff --git a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/functions/runtime.callSingle.html b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/functions/runtime.callSingle.html index 214b0dce066f..d878a5f8888e 100644 --- a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/functions/runtime.callSingle.html +++ b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/functions/runtime.callSingle.html @@ -1,4 +1,4 @@ -callSingle | @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                  @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                    Preparing search index...

                                                                                                                                                                                                                                                                                    Function callSingle

                                                                                                                                                                                                                                                                                    • Calls a method tok offered by a provider plugin resource, but returns a single value.

                                                                                                                                                                                                                                                                                      +callSingle | @pulumi/pulumi - v3.243.0
                                                                                                                                                                                                                                                                                      @pulumi/pulumi - v3.243.0
                                                                                                                                                                                                                                                                                        Preparing search index...

                                                                                                                                                                                                                                                                                        Function callSingle

                                                                                                                                                                                                                                                                                        • Calls a method tok offered by a provider plugin resource, but returns a single value.

                                                                                                                                                                                                                                                                                          This method expects the result of callAsync to be a map containing a single value, which it unwraps.

                                                                                                                                                                                                                                                                                          -

                                                                                                                                                                                                                                                                                          Type Parameters

                                                                                                                                                                                                                                                                                          • T

                                                                                                                                                                                                                                                                                          Parameters

                                                                                                                                                                                                                                                                                          • tok: string
                                                                                                                                                                                                                                                                                          • props: Inputs
                                                                                                                                                                                                                                                                                          • Optionalres: Resource
                                                                                                                                                                                                                                                                                          • OptionalpackageRef: Promise<string | undefined>

                                                                                                                                                                                                                                                                                          Returns Output<T>

                                                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                                                        Type Parameters

                                                                                                                                                                                                                                                                                        • T

                                                                                                                                                                                                                                                                                        Parameters

                                                                                                                                                                                                                                                                                        • tok: string
                                                                                                                                                                                                                                                                                        • props: Inputs
                                                                                                                                                                                                                                                                                        • Optionalres: Resource
                                                                                                                                                                                                                                                                                        • OptionalpackageRef: Promise<string | undefined>

                                                                                                                                                                                                                                                                                        Returns Output<T>

                                                                                                                                                                                                                                                                                      diff --git a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/functions/runtime.computeCodePaths.html b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/functions/runtime.computeCodePaths.html index 802aff4fadad..623972adfe98 100644 --- a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/functions/runtime.computeCodePaths.html +++ b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/functions/runtime.computeCodePaths.html @@ -1,4 +1,4 @@ -computeCodePaths | @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                      @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                        Preparing search index...

                                                                                                                                                                                                                                                                                        Function computeCodePaths

                                                                                                                                                                                                                                                                                        • Computes the local node_module paths to include in an uploaded cloud +computeCodePaths | @pulumi/pulumi - v3.243.0

                                                                                                                                                                                                                                                                                          @pulumi/pulumi - v3.243.0
                                                                                                                                                                                                                                                                                            Preparing search index...

                                                                                                                                                                                                                                                                                            Function computeCodePaths

                                                                                                                                                                                                                                                                                            • Computes the local node_module paths to include in an uploaded cloud "lambda". Specifically, it will examine the package.json for the caller's code and transitively walk its dependencies section to determine what packages should be included.

                                                                                                                                                                                                                                                                                              @@ -14,6 +14,6 @@ library code that is determining what is needed for a cloud-lambda. i.e. the aws.serverless.Function or azure.serverless.FunctionApp libraries. In general, other clients should not need to use this helper.

                                                                                                                                                                                                                                                                                              -

                                                                                                                                                                                                                                                                                              Parameters

                                                                                                                                                                                                                                                                                              Returns Promise<Map<string, Archive | Asset>>

                                                                                                                                                                                                                                                                                            • Parameters

                                                                                                                                                                                                                                                                                              • OptionalextraIncludePaths: string[]
                                                                                                                                                                                                                                                                                              • OptionalextraIncludePackages: string[]
                                                                                                                                                                                                                                                                                              • OptionalextraExcludePackages: string[]

                                                                                                                                                                                                                                                                                              Returns Promise<Map<string, Archive | Asset>>

                                                                                                                                                                                                                                                                                              Use the computeCodePaths overload that takes a +

                                                                                                                                                                                                                                                                                              Parameters

                                                                                                                                                                                                                                                                                              Returns Promise<Map<string, Archive | Asset>>

                                                                                                                                                                                                                                                                                            • Parameters

                                                                                                                                                                                                                                                                                              • OptionalextraIncludePaths: string[]
                                                                                                                                                                                                                                                                                              • OptionalextraIncludePackages: string[]
                                                                                                                                                                                                                                                                                              • OptionalextraExcludePackages: string[]

                                                                                                                                                                                                                                                                                              Returns Promise<Map<string, Archive | Asset>>

                                                                                                                                                                                                                                                                                              Use the computeCodePaths overload that takes a CodePathOptions instead.

                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                            +
                                                                                                                                                                                                                                                                                          diff --git a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/functions/runtime.deserializeProperties.html b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/functions/runtime.deserializeProperties.html index ef0f15b0525a..42cd577e0202 100644 --- a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/functions/runtime.deserializeProperties.html +++ b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/functions/runtime.deserializeProperties.html @@ -1,2 +1,2 @@ -deserializeProperties | @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                          @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                            Preparing search index...

                                                                                                                                                                                                                                                                                            Function deserializeProperties

                                                                                                                                                                                                                                                                                            • Fetches the raw outputs and deserializes them from a gRPC call result.

                                                                                                                                                                                                                                                                                              -

                                                                                                                                                                                                                                                                                              Parameters

                                                                                                                                                                                                                                                                                              • outputsStruct: Struct
                                                                                                                                                                                                                                                                                              • OptionalkeepUnknowns: boolean

                                                                                                                                                                                                                                                                                              Returns Inputs

                                                                                                                                                                                                                                                                                            +deserializeProperties | @pulumi/pulumi - v3.243.0
                                                                                                                                                                                                                                                                                            @pulumi/pulumi - v3.243.0
                                                                                                                                                                                                                                                                                              Preparing search index...

                                                                                                                                                                                                                                                                                              Function deserializeProperties

                                                                                                                                                                                                                                                                                              • Fetches the raw outputs and deserializes them from a gRPC call result.

                                                                                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                                                                                Parameters

                                                                                                                                                                                                                                                                                                • outputsStruct: Struct
                                                                                                                                                                                                                                                                                                • OptionalkeepUnknowns: boolean

                                                                                                                                                                                                                                                                                                Returns Inputs

                                                                                                                                                                                                                                                                                              diff --git a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/functions/runtime.deserializeProperty.html b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/functions/runtime.deserializeProperty.html index 30a948af558a..ca8fd4b27b6e 100644 --- a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/functions/runtime.deserializeProperty.html +++ b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/functions/runtime.deserializeProperty.html @@ -1,3 +1,3 @@ -deserializeProperty | @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                              @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                Preparing search index...

                                                                                                                                                                                                                                                                                                Function deserializeProperty

                                                                                                                                                                                                                                                                                                • Unpacks some special types, reversing the process undertaken by +deserializeProperty | @pulumi/pulumi - v3.243.0

                                                                                                                                                                                                                                                                                                  @pulumi/pulumi - v3.243.0
                                                                                                                                                                                                                                                                                                    Preparing search index...

                                                                                                                                                                                                                                                                                                    Function deserializeProperty

                                                                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                                                                    Parameters

                                                                                                                                                                                                                                                                                                    • prop: any
                                                                                                                                                                                                                                                                                                    • OptionalkeepUnknowns: boolean

                                                                                                                                                                                                                                                                                                    Returns any

                                                                                                                                                                                                                                                                                                  diff --git a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/functions/runtime.disconnect.html b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/functions/runtime.disconnect.html index b553d89b3d9d..b64dbc101432 100644 --- a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/functions/runtime.disconnect.html +++ b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/functions/runtime.disconnect.html @@ -1,7 +1,7 @@ -disconnect | @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                  @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                    Preparing search index...

                                                                                                                                                                                                                                                                                                    Function disconnect

                                                                                                                                                                                                                                                                                                    • Permanently disconnects from the server, closing the connections. It waits +disconnect | @pulumi/pulumi - v3.243.0

                                                                                                                                                                                                                                                                                                      @pulumi/pulumi - v3.243.0
                                                                                                                                                                                                                                                                                                        Preparing search index...

                                                                                                                                                                                                                                                                                                        Function disconnect

                                                                                                                                                                                                                                                                                                        • Permanently disconnects from the server, closing the connections. It waits for the existing RPC queue to drain. If any RPCs come in afterwards, however, they will crash the process.

                                                                                                                                                                                                                                                                                                          If signalShutdown is true, signal to the monitor that we're ready to shutdown. This will wait until the monitor has completed all steps, including deletion steps.

                                                                                                                                                                                                                                                                                                          -

                                                                                                                                                                                                                                                                                                          Parameters

                                                                                                                                                                                                                                                                                                          • signalShutdown: boolean = false

                                                                                                                                                                                                                                                                                                          Returns Promise<void>

                                                                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                                                                        Parameters

                                                                                                                                                                                                                                                                                                        • signalShutdown: boolean = false

                                                                                                                                                                                                                                                                                                        Returns Promise<void>

                                                                                                                                                                                                                                                                                                      diff --git a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/functions/runtime.disconnectSync.html b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/functions/runtime.disconnectSync.html index 0d57345e2609..f68689fa7c99 100644 --- a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/functions/runtime.disconnectSync.html +++ b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/functions/runtime.disconnectSync.html @@ -1,4 +1,4 @@ -disconnectSync | @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                      @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                        Preparing search index...

                                                                                                                                                                                                                                                                                                        Function disconnectSync

                                                                                                                                                                                                                                                                                                        • Permanently disconnects from the server, closing the connections. Unlike +disconnectSync | @pulumi/pulumi - v3.243.0

                                                                                                                                                                                                                                                                                                          @pulumi/pulumi - v3.243.0
                                                                                                                                                                                                                                                                                                            Preparing search index...

                                                                                                                                                                                                                                                                                                            Function disconnectSync

                                                                                                                                                                                                                                                                                                            • Permanently disconnects from the server, closing the connections. Unlike disconnect. it does not wait for the existing RPC queue to drain. Any RPCs that come in after this call will crash the process.

                                                                                                                                                                                                                                                                                                              -

                                                                                                                                                                                                                                                                                                              Returns void

                                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                                            Returns void

                                                                                                                                                                                                                                                                                                          diff --git a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/functions/runtime.getCallbacks.html b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/functions/runtime.getCallbacks.html index 571727ab86ca..1b9377365a04 100644 --- a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/functions/runtime.getCallbacks.html +++ b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/functions/runtime.getCallbacks.html @@ -1,2 +1,2 @@ -getCallbacks | @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                          @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                            Preparing search index...

                                                                                                                                                                                                                                                                                                            Function getCallbacks

                                                                                                                                                                                                                                                                                                            +getCallbacks | @pulumi/pulumi - v3.243.0
                                                                                                                                                                                                                                                                                                            @pulumi/pulumi - v3.243.0
                                                                                                                                                                                                                                                                                                              Preparing search index...

                                                                                                                                                                                                                                                                                                              Function getCallbacks

                                                                                                                                                                                                                                                                                                              diff --git a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/functions/runtime.getConfig.html b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/functions/runtime.getConfig.html index 2bee9a85c1ac..8699119c39f7 100644 --- a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/functions/runtime.getConfig.html +++ b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/functions/runtime.getConfig.html @@ -1,2 +1,2 @@ -getConfig | @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                              @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                Preparing search index...

                                                                                                                                                                                                                                                                                                                Function getConfig

                                                                                                                                                                                                                                                                                                                • Returns a configuration variable's value, or undefined if it is unset.

                                                                                                                                                                                                                                                                                                                  -

                                                                                                                                                                                                                                                                                                                  Parameters

                                                                                                                                                                                                                                                                                                                  • k: string

                                                                                                                                                                                                                                                                                                                  Returns string | undefined

                                                                                                                                                                                                                                                                                                                +getConfig | @pulumi/pulumi - v3.243.0
                                                                                                                                                                                                                                                                                                                @pulumi/pulumi - v3.243.0
                                                                                                                                                                                                                                                                                                                  Preparing search index...

                                                                                                                                                                                                                                                                                                                  Function getConfig

                                                                                                                                                                                                                                                                                                                  • Returns a configuration variable's value, or undefined if it is unset.

                                                                                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                                                                                    Parameters

                                                                                                                                                                                                                                                                                                                    • k: string

                                                                                                                                                                                                                                                                                                                    Returns string | undefined

                                                                                                                                                                                                                                                                                                                  diff --git a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/functions/runtime.getEngine.html b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/functions/runtime.getEngine.html index 098864b58449..d0f07cb1b358 100644 --- a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/functions/runtime.getEngine.html +++ b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/functions/runtime.getEngine.html @@ -1,3 +1,3 @@ -getEngine | @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                  @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                    Preparing search index...

                                                                                                                                                                                                                                                                                                                    Function getEngine

                                                                                                                                                                                                                                                                                                                    • Returns the current engine, if any, for RPC communications back to the +getEngine | @pulumi/pulumi - v3.243.0

                                                                                                                                                                                                                                                                                                                      @pulumi/pulumi - v3.243.0
                                                                                                                                                                                                                                                                                                                        Preparing search index...

                                                                                                                                                                                                                                                                                                                        Function getEngine

                                                                                                                                                                                                                                                                                                                        • Returns the current engine, if any, for RPC communications back to the resource engine.

                                                                                                                                                                                                                                                                                                                          -

                                                                                                                                                                                                                                                                                                                          Returns IEngineClient | undefined

                                                                                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                                                                                        Returns IEngineClient | undefined

                                                                                                                                                                                                                                                                                                                      diff --git a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/functions/runtime.getMaximumListeners.html b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/functions/runtime.getMaximumListeners.html index 16bfb609385e..c0d0d277885c 100644 --- a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/functions/runtime.getMaximumListeners.html +++ b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/functions/runtime.getMaximumListeners.html @@ -1,2 +1,2 @@ -getMaximumListeners | @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                      @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                        Preparing search index...

                                                                                                                                                                                                                                                                                                                        Function getMaximumListeners

                                                                                                                                                                                                                                                                                                                        +getMaximumListeners | @pulumi/pulumi - v3.243.0
                                                                                                                                                                                                                                                                                                                        @pulumi/pulumi - v3.243.0
                                                                                                                                                                                                                                                                                                                          Preparing search index...

                                                                                                                                                                                                                                                                                                                          Function getMaximumListeners

                                                                                                                                                                                                                                                                                                                          diff --git a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/functions/runtime.getMonitor.html b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/functions/runtime.getMonitor.html index 5e87066f88a9..11a90827662a 100644 --- a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/functions/runtime.getMonitor.html +++ b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/functions/runtime.getMonitor.html @@ -1,3 +1,3 @@ -getMonitor | @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                          @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                            Preparing search index...

                                                                                                                                                                                                                                                                                                                            Function getMonitor

                                                                                                                                                                                                                                                                                                                            • Returns the current resource monitoring service client for RPC +getMonitor | @pulumi/pulumi - v3.243.0

                                                                                                                                                                                                                                                                                                                              @pulumi/pulumi - v3.243.0
                                                                                                                                                                                                                                                                                                                                Preparing search index...

                                                                                                                                                                                                                                                                                                                                Function getMonitor

                                                                                                                                                                                                                                                                                                                                • Returns the current resource monitoring service client for RPC communications.

                                                                                                                                                                                                                                                                                                                                  -

                                                                                                                                                                                                                                                                                                                                  Returns IResourceMonitorClient | undefined

                                                                                                                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                                                                                                                Returns IResourceMonitorClient | undefined

                                                                                                                                                                                                                                                                                                                              diff --git a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/functions/runtime.getOrganization.html b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/functions/runtime.getOrganization.html index d01d9249a508..48250928a0c7 100644 --- a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/functions/runtime.getOrganization.html +++ b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/functions/runtime.getOrganization.html @@ -1,2 +1,2 @@ -getOrganization | @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                              @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                Preparing search index...

                                                                                                                                                                                                                                                                                                                                Function getOrganization

                                                                                                                                                                                                                                                                                                                                +getOrganization | @pulumi/pulumi - v3.243.0
                                                                                                                                                                                                                                                                                                                                @pulumi/pulumi - v3.243.0
                                                                                                                                                                                                                                                                                                                                  Preparing search index...

                                                                                                                                                                                                                                                                                                                                  Function getOrganization

                                                                                                                                                                                                                                                                                                                                  diff --git a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/functions/runtime.getProject.html b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/functions/runtime.getProject.html index 9bddf5a0afd8..255caf6f01c7 100644 --- a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/functions/runtime.getProject.html +++ b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/functions/runtime.getProject.html @@ -1,2 +1,2 @@ -getProject | @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                  @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                    Preparing search index...

                                                                                                                                                                                                                                                                                                                                    Function getProject

                                                                                                                                                                                                                                                                                                                                    +getProject | @pulumi/pulumi - v3.243.0
                                                                                                                                                                                                                                                                                                                                    @pulumi/pulumi - v3.243.0
                                                                                                                                                                                                                                                                                                                                      Preparing search index...

                                                                                                                                                                                                                                                                                                                                      Function getProject

                                                                                                                                                                                                                                                                                                                                      diff --git a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/functions/runtime.getResource.html b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/functions/runtime.getResource.html index c53a02f59516..d44d52b38c3f 100644 --- a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/functions/runtime.getResource.html +++ b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/functions/runtime.getResource.html @@ -1,2 +1,2 @@ -getResource | @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                      @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                        Preparing search index...

                                                                                                                                                                                                                                                                                                                                        Function getResource

                                                                                                                                                                                                                                                                                                                                        +getResource | @pulumi/pulumi - v3.243.0
                                                                                                                                                                                                                                                                                                                                        @pulumi/pulumi - v3.243.0
                                                                                                                                                                                                                                                                                                                                          Preparing search index...

                                                                                                                                                                                                                                                                                                                                          Function getResource

                                                                                                                                                                                                                                                                                                                                          diff --git a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/functions/runtime.getResourceModule.html b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/functions/runtime.getResourceModule.html index c97d8342378f..c53d37810b50 100644 --- a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/functions/runtime.getResourceModule.html +++ b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/functions/runtime.getResourceModule.html @@ -1 +1 @@ -getResourceModule | @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                          @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                            Preparing search index...

                                                                                                                                                                                                                                                                                                                                            Function getResourceModule

                                                                                                                                                                                                                                                                                                                                            +getResourceModule | @pulumi/pulumi - v3.243.0
                                                                                                                                                                                                                                                                                                                                            @pulumi/pulumi - v3.243.0
                                                                                                                                                                                                                                                                                                                                              Preparing search index...

                                                                                                                                                                                                                                                                                                                                              Function getResourceModule

                                                                                                                                                                                                                                                                                                                                              diff --git a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/functions/runtime.getResourcePackage.html b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/functions/runtime.getResourcePackage.html index 3ef132da4deb..7da4cbbf7c09 100644 --- a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/functions/runtime.getResourcePackage.html +++ b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/functions/runtime.getResourcePackage.html @@ -1 +1 @@ -getResourcePackage | @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                              @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                Preparing search index...

                                                                                                                                                                                                                                                                                                                                                Function getResourcePackage

                                                                                                                                                                                                                                                                                                                                                +getResourcePackage | @pulumi/pulumi - v3.243.0
                                                                                                                                                                                                                                                                                                                                                @pulumi/pulumi - v3.243.0
                                                                                                                                                                                                                                                                                                                                                  Preparing search index...

                                                                                                                                                                                                                                                                                                                                                  Function getResourcePackage

                                                                                                                                                                                                                                                                                                                                                  diff --git a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/functions/runtime.getRootDirectory.html b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/functions/runtime.getRootDirectory.html index 3d99b92858cc..21230fe70aec 100644 --- a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/functions/runtime.getRootDirectory.html +++ b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/functions/runtime.getRootDirectory.html @@ -1,2 +1,2 @@ -getRootDirectory | @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                  @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                    Preparing search index...

                                                                                                                                                                                                                                                                                                                                                    Function getRootDirectory

                                                                                                                                                                                                                                                                                                                                                    +getRootDirectory | @pulumi/pulumi - v3.243.0
                                                                                                                                                                                                                                                                                                                                                    @pulumi/pulumi - v3.243.0
                                                                                                                                                                                                                                                                                                                                                      Preparing search index...

                                                                                                                                                                                                                                                                                                                                                      Function getRootDirectory

                                                                                                                                                                                                                                                                                                                                                      diff --git a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/functions/runtime.getStack.html b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/functions/runtime.getStack.html index cb3ca48a37a1..d648af5ddb50 100644 --- a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/functions/runtime.getStack.html +++ b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/functions/runtime.getStack.html @@ -1,2 +1,2 @@ -getStack | @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                      @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                        Preparing search index...

                                                                                                                                                                                                                                                                                                                                                        Function getStack

                                                                                                                                                                                                                                                                                                                                                        +getStack | @pulumi/pulumi - v3.243.0
                                                                                                                                                                                                                                                                                                                                                        @pulumi/pulumi - v3.243.0
                                                                                                                                                                                                                                                                                                                                                          Preparing search index...

                                                                                                                                                                                                                                                                                                                                                          Function getStack

                                                                                                                                                                                                                                                                                                                                                          diff --git a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/functions/runtime.getStackResource.html b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/functions/runtime.getStackResource.html index 78fceda3330f..e109cd86b6e9 100644 --- a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/functions/runtime.getStackResource.html +++ b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/functions/runtime.getStackResource.html @@ -1 +1 @@ -getStackResource | @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                          @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                            Preparing search index...

                                                                                                                                                                                                                                                                                                                                                            Function getStackResource

                                                                                                                                                                                                                                                                                                                                                            +getStackResource | @pulumi/pulumi - v3.243.0
                                                                                                                                                                                                                                                                                                                                                            @pulumi/pulumi - v3.243.0
                                                                                                                                                                                                                                                                                                                                                              Preparing search index...

                                                                                                                                                                                                                                                                                                                                                              Function getStackResource

                                                                                                                                                                                                                                                                                                                                                              diff --git a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/functions/runtime.hasEngine.html b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/functions/runtime.hasEngine.html index 37ed5d8359a3..1ebd2684ea1d 100644 --- a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/functions/runtime.hasEngine.html +++ b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/functions/runtime.hasEngine.html @@ -1,2 +1,2 @@ -hasEngine | @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                              @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                Function hasEngine

                                                                                                                                                                                                                                                                                                                                                                +hasEngine | @pulumi/pulumi - v3.243.0
                                                                                                                                                                                                                                                                                                                                                                @pulumi/pulumi - v3.243.0
                                                                                                                                                                                                                                                                                                                                                                  Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                  Function hasEngine

                                                                                                                                                                                                                                                                                                                                                                  diff --git a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/functions/runtime.hasMonitor.html b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/functions/runtime.hasMonitor.html index ceda438c76d2..e6eb3a266ecc 100644 --- a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/functions/runtime.hasMonitor.html +++ b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/functions/runtime.hasMonitor.html @@ -1,2 +1,2 @@ -hasMonitor | @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                  @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                    Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                    Function hasMonitor

                                                                                                                                                                                                                                                                                                                                                                    +hasMonitor | @pulumi/pulumi - v3.243.0
                                                                                                                                                                                                                                                                                                                                                                    @pulumi/pulumi - v3.243.0
                                                                                                                                                                                                                                                                                                                                                                      Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                      Function hasMonitor

                                                                                                                                                                                                                                                                                                                                                                      diff --git a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/functions/runtime.invoke.html b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/functions/runtime.invoke.html index b30349c40622..b6e2d7a0cb7f 100644 --- a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/functions/runtime.invoke.html +++ b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/functions/runtime.invoke.html @@ -1,4 +1,4 @@ -invoke | @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                      @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                        Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                        Function invoke

                                                                                                                                                                                                                                                                                                                                                                        • Dynamically invokes the function tok, which is offered by a provider +invoke | @pulumi/pulumi - v3.243.0

                                                                                                                                                                                                                                                                                                                                                                          @pulumi/pulumi - v3.243.0
                                                                                                                                                                                                                                                                                                                                                                            Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                            Function invoke

                                                                                                                                                                                                                                                                                                                                                                            • Dynamically invokes the function tok, which is offered by a provider plugin. invoke behaves differently in the case that options contains {async:true} or not.

                                                                                                                                                                                                                                                                                                                                                                              In the case where {async:true} is present in the options bag:

                                                                                                                                                                                                                                                                                                                                                                              @@ -39,4 +39,4 @@

                                                                                                                                                                                                                                                                                                                                                                              All of these contain async values that would prevent `invoke from being able to operate synchronously.

                                                                                                                                                                                                                                                                                                                                                                              -

                                                                                                                                                                                                                                                                                                                                                                              Parameters

                                                                                                                                                                                                                                                                                                                                                                              • tok: string
                                                                                                                                                                                                                                                                                                                                                                              • props: Inputs
                                                                                                                                                                                                                                                                                                                                                                              • opts: InvokeOptions = {}
                                                                                                                                                                                                                                                                                                                                                                              • OptionalpackageRef: Promise<string | undefined>

                                                                                                                                                                                                                                                                                                                                                                              Returns Promise<any>

                                                                                                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                                                                                                            Parameters

                                                                                                                                                                                                                                                                                                                                                                            • tok: string
                                                                                                                                                                                                                                                                                                                                                                            • props: Inputs
                                                                                                                                                                                                                                                                                                                                                                            • opts: InvokeOptions = {}
                                                                                                                                                                                                                                                                                                                                                                            • OptionalpackageRef: Promise<string | undefined>

                                                                                                                                                                                                                                                                                                                                                                            Returns Promise<any>

                                                                                                                                                                                                                                                                                                                                                                          diff --git a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/functions/runtime.invokeOutput.html b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/functions/runtime.invokeOutput.html index e8bff94483c9..8f191b0838d3 100644 --- a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/functions/runtime.invokeOutput.html +++ b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/functions/runtime.invokeOutput.html @@ -1,3 +1,3 @@ -invokeOutput | @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                          @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                            Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                            Function invokeOutput

                                                                                                                                                                                                                                                                                                                                                                            diff --git a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/functions/runtime.invokeSingle.html b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/functions/runtime.invokeSingle.html index 77282d1b3f67..f8f13209a297 100644 --- a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/functions/runtime.invokeSingle.html +++ b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/functions/runtime.invokeSingle.html @@ -1 +1 @@ -invokeSingle | @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                            @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                              Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                              Function invokeSingle

                                                                                                                                                                                                                                                                                                                                                                              +invokeSingle | @pulumi/pulumi - v3.243.0
                                                                                                                                                                                                                                                                                                                                                                              @pulumi/pulumi - v3.243.0
                                                                                                                                                                                                                                                                                                                                                                                Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                Function invokeSingle

                                                                                                                                                                                                                                                                                                                                                                                diff --git a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/functions/runtime.invokeSingleOutput.html b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/functions/runtime.invokeSingleOutput.html index a44eb3efb084..6d37d4109b53 100644 --- a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/functions/runtime.invokeSingleOutput.html +++ b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/functions/runtime.invokeSingleOutput.html @@ -1,3 +1,3 @@ -invokeSingleOutput | @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                  Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                  Function invokeSingleOutput

                                                                                                                                                                                                                                                                                                                                                                                  • Similar to the plain invokeSingle but returns the response as an output, maintaining +invokeSingleOutput | @pulumi/pulumi - v3.243.0

                                                                                                                                                                                                                                                                                                                                                                                    @pulumi/pulumi - v3.243.0
                                                                                                                                                                                                                                                                                                                                                                                      Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                      Function invokeSingleOutput

                                                                                                                                                                                                                                                                                                                                                                                      • Similar to the plain invokeSingle but returns the response as an output, maintaining secrets of the response, if any.

                                                                                                                                                                                                                                                                                                                                                                                        -

                                                                                                                                                                                                                                                                                                                                                                                        Type Parameters

                                                                                                                                                                                                                                                                                                                                                                                        • T

                                                                                                                                                                                                                                                                                                                                                                                        Parameters

                                                                                                                                                                                                                                                                                                                                                                                        • tok: string
                                                                                                                                                                                                                                                                                                                                                                                        • props: Inputs
                                                                                                                                                                                                                                                                                                                                                                                        • opts: InvokeOptions = {}
                                                                                                                                                                                                                                                                                                                                                                                        • OptionalpackageRef: Promise<string | undefined>

                                                                                                                                                                                                                                                                                                                                                                                        Returns Output<T>

                                                                                                                                                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                                                                                                                                                      Type Parameters

                                                                                                                                                                                                                                                                                                                                                                                      • T

                                                                                                                                                                                                                                                                                                                                                                                      Parameters

                                                                                                                                                                                                                                                                                                                                                                                      • tok: string
                                                                                                                                                                                                                                                                                                                                                                                      • props: Inputs
                                                                                                                                                                                                                                                                                                                                                                                      • opts: InvokeOptions = {}
                                                                                                                                                                                                                                                                                                                                                                                      • OptionalpackageRef: Promise<string | undefined>

                                                                                                                                                                                                                                                                                                                                                                                      Returns Output<T>

                                                                                                                                                                                                                                                                                                                                                                                    diff --git a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/functions/runtime.isDryRun.html b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/functions/runtime.isDryRun.html index db0e81e8a2fe..559e4888f346 100644 --- a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/functions/runtime.isDryRun.html +++ b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/functions/runtime.isDryRun.html @@ -1,4 +1,4 @@ -isDryRun | @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                    @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                      Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                      Function isDryRun

                                                                                                                                                                                                                                                                                                                                                                                      • Returns true if we are currently doing a preview.

                                                                                                                                                                                                                                                                                                                                                                                        +isDryRun | @pulumi/pulumi - v3.243.0
                                                                                                                                                                                                                                                                                                                                                                                        @pulumi/pulumi - v3.243.0
                                                                                                                                                                                                                                                                                                                                                                                          Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                          Function isDryRun

                                                                                                                                                                                                                                                                                                                                                                                          • Returns true if we are currently doing a preview.

                                                                                                                                                                                                                                                                                                                                                                                            When writing unit tests, you can set this flag via either setMocks or _setIsDryRun.

                                                                                                                                                                                                                                                                                                                                                                                            -

                                                                                                                                                                                                                                                                                                                                                                                            Returns boolean

                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                          Returns boolean

                                                                                                                                                                                                                                                                                                                                                                                        diff --git a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/functions/runtime.isLegacyApplyEnabled.html b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/functions/runtime.isLegacyApplyEnabled.html index 7b06cb60403b..1d5907cca4dd 100644 --- a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/functions/runtime.isLegacyApplyEnabled.html +++ b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/functions/runtime.isLegacyApplyEnabled.html @@ -1,3 +1,3 @@ -isLegacyApplyEnabled | @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                        @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                          Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                          Function isLegacyApplyEnabled

                                                                                                                                                                                                                                                                                                                                                                                          • Returns true if we will resolve missing outputs to inputs during preview +isLegacyApplyEnabled | @pulumi/pulumi - v3.243.0

                                                                                                                                                                                                                                                                                                                                                                                            @pulumi/pulumi - v3.243.0
                                                                                                                                                                                                                                                                                                                                                                                              Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                              Function isLegacyApplyEnabled

                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                              Returns boolean

                                                                                                                                                                                                                                                                                                                                                                                            diff --git a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/functions/runtime.isRpcSecret.html b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/functions/runtime.isRpcSecret.html index 590027d932de..8276d6a5bdaf 100644 --- a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/functions/runtime.isRpcSecret.html +++ b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/functions/runtime.isRpcSecret.html @@ -1,3 +1,3 @@ -isRpcSecret | @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                            @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                              Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                              Function isRpcSecret

                                                                                                                                                                                                                                                                                                                                                                                              • Returns true if the given object is a wrapped secret value (i.e. it's an +isRpcSecret | @pulumi/pulumi - v3.243.0

                                                                                                                                                                                                                                                                                                                                                                                                @pulumi/pulumi - v3.243.0
                                                                                                                                                                                                                                                                                                                                                                                                  Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                  Function isRpcSecret

                                                                                                                                                                                                                                                                                                                                                                                                  • Returns true if the given object is a wrapped secret value (i.e. it's an object with the special key set).

                                                                                                                                                                                                                                                                                                                                                                                                    -

                                                                                                                                                                                                                                                                                                                                                                                                    Parameters

                                                                                                                                                                                                                                                                                                                                                                                                    • obj: any

                                                                                                                                                                                                                                                                                                                                                                                                    Returns boolean

                                                                                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                                                                                  Parameters

                                                                                                                                                                                                                                                                                                                                                                                                  • obj: any

                                                                                                                                                                                                                                                                                                                                                                                                  Returns boolean

                                                                                                                                                                                                                                                                                                                                                                                                diff --git a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/functions/runtime.mapAliasesForRequest.html b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/functions/runtime.mapAliasesForRequest.html index 15602411616c..036af11ce3a4 100644 --- a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/functions/runtime.mapAliasesForRequest.html +++ b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/functions/runtime.mapAliasesForRequest.html @@ -1 +1 @@ -mapAliasesForRequest | @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                                @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                                  Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                  Function mapAliasesForRequest

                                                                                                                                                                                                                                                                                                                                                                                                  • Parameters

                                                                                                                                                                                                                                                                                                                                                                                                    • aliases: (string | Alias)[] | undefined
                                                                                                                                                                                                                                                                                                                                                                                                    • OptionalparentURN: string

                                                                                                                                                                                                                                                                                                                                                                                                    Returns Promise<Alias[]>

                                                                                                                                                                                                                                                                                                                                                                                                  +mapAliasesForRequest | @pulumi/pulumi - v3.243.0
                                                                                                                                                                                                                                                                                                                                                                                                  @pulumi/pulumi - v3.243.0
                                                                                                                                                                                                                                                                                                                                                                                                    Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                    Function mapAliasesForRequest

                                                                                                                                                                                                                                                                                                                                                                                                    • Parameters

                                                                                                                                                                                                                                                                                                                                                                                                      • aliases: (string | Alias)[] | undefined
                                                                                                                                                                                                                                                                                                                                                                                                      • OptionalparentURN: string

                                                                                                                                                                                                                                                                                                                                                                                                      Returns Promise<Alias[]>

                                                                                                                                                                                                                                                                                                                                                                                                    diff --git a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/functions/runtime.readResource.html b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/functions/runtime.readResource.html index b51f9e88f142..276819987239 100644 --- a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/functions/runtime.readResource.html +++ b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/functions/runtime.readResource.html @@ -1,4 +1,4 @@ -readResource | @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                                    @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                                      Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                      Function readResource

                                                                                                                                                                                                                                                                                                                                                                                                      diff --git a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/functions/runtime.registerErrorHook.html b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/functions/runtime.registerErrorHook.html index a6a0d8737d69..6e16ef64af9a 100644 --- a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/functions/runtime.registerErrorHook.html +++ b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/functions/runtime.registerErrorHook.html @@ -1 +1 @@ -registerErrorHook | @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                                      @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                                        Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                        Function registerErrorHook

                                                                                                                                                                                                                                                                                                                                                                                                        +registerErrorHook | @pulumi/pulumi - v3.243.0
                                                                                                                                                                                                                                                                                                                                                                                                        @pulumi/pulumi - v3.243.0
                                                                                                                                                                                                                                                                                                                                                                                                          Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                          Function registerErrorHook

                                                                                                                                                                                                                                                                                                                                                                                                          diff --git a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/functions/runtime.registerInvokeTransform.html b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/functions/runtime.registerInvokeTransform.html index cfd69c7a97a6..9c060f7fe6e4 100644 --- a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/functions/runtime.registerInvokeTransform.html +++ b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/functions/runtime.registerInvokeTransform.html @@ -1,2 +1,2 @@ -registerInvokeTransform | @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                                          @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                                            Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                            Function registerInvokeTransform

                                                                                                                                                                                                                                                                                                                                                                                                            +registerInvokeTransform | @pulumi/pulumi - v3.243.0
                                                                                                                                                                                                                                                                                                                                                                                                            @pulumi/pulumi - v3.243.0
                                                                                                                                                                                                                                                                                                                                                                                                              Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                              Function registerInvokeTransform

                                                                                                                                                                                                                                                                                                                                                                                                              diff --git a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/functions/runtime.registerPackage.html b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/functions/runtime.registerPackage.html index 2823b767ff8c..6051235cfe6a 100644 --- a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/functions/runtime.registerPackage.html +++ b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/functions/runtime.registerPackage.html @@ -1,5 +1,5 @@ -registerPackage | @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                                              @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                                                Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                Function registerPackage

                                                                                                                                                                                                                                                                                                                                                                                                                diff --git a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/functions/runtime.registerResource.html b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/functions/runtime.registerResource.html index 888534cbbbcf..368f2136fe4c 100644 --- a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/functions/runtime.registerResource.html +++ b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/functions/runtime.registerResource.html @@ -1,6 +1,6 @@ -registerResource | @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                                                @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                                                  Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                  Function registerResource

                                                                                                                                                                                                                                                                                                                                                                                                                  • registerResource registers a new resource object with a given type t and +registerResource | @pulumi/pulumi - v3.243.0

                                                                                                                                                                                                                                                                                                                                                                                                                    @pulumi/pulumi - v3.243.0
                                                                                                                                                                                                                                                                                                                                                                                                                      Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                      Function registerResource

                                                                                                                                                                                                                                                                                                                                                                                                                      • registerResource registers a new resource object with a given type t and name. It returns the auto-generated URN and the ID that will resolve after the deployment has completed. All properties will be initialized to property objects that the registration operation will resolve at the right time (or remain unresolved for deployments).

                                                                                                                                                                                                                                                                                                                                                                                                                        -

                                                                                                                                                                                                                                                                                                                                                                                                                        Parameters

                                                                                                                                                                                                                                                                                                                                                                                                                        Returns void

                                                                                                                                                                                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                                                                                                                                                                                      Parameters

                                                                                                                                                                                                                                                                                                                                                                                                                      Returns void

                                                                                                                                                                                                                                                                                                                                                                                                                    diff --git a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/functions/runtime.registerResourceHook.html b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/functions/runtime.registerResourceHook.html index c268f44780ac..617d9daedd69 100644 --- a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/functions/runtime.registerResourceHook.html +++ b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/functions/runtime.registerResourceHook.html @@ -1 +1 @@ -registerResourceHook | @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                                                    @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                                                      Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                      Function registerResourceHook

                                                                                                                                                                                                                                                                                                                                                                                                                      +registerResourceHook | @pulumi/pulumi - v3.243.0
                                                                                                                                                                                                                                                                                                                                                                                                                      @pulumi/pulumi - v3.243.0
                                                                                                                                                                                                                                                                                                                                                                                                                        Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                        Function registerResourceHook

                                                                                                                                                                                                                                                                                                                                                                                                                        diff --git a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/functions/runtime.registerResourceModule.html b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/functions/runtime.registerResourceModule.html index ee116d0f65ac..60a12b003217 100644 --- a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/functions/runtime.registerResourceModule.html +++ b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/functions/runtime.registerResourceModule.html @@ -1,4 +1,4 @@ -registerResourceModule | @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                                                        @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                                                          Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                          Function registerResourceModule

                                                                                                                                                                                                                                                                                                                                                                                                                          • Registers a resource module that will be used to construct resources for any +registerResourceModule | @pulumi/pulumi - v3.243.0

                                                                                                                                                                                                                                                                                                                                                                                                                            @pulumi/pulumi - v3.243.0
                                                                                                                                                                                                                                                                                                                                                                                                                              Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                              Function registerResourceModule

                                                                                                                                                                                                                                                                                                                                                                                                                              • Registers a resource module that will be used to construct resources for any URNs matching the module name and version that are deserialized by the current instance of the Pulumi JavaScript SDK.

                                                                                                                                                                                                                                                                                                                                                                                                                                -

                                                                                                                                                                                                                                                                                                                                                                                                                                Parameters

                                                                                                                                                                                                                                                                                                                                                                                                                                Returns void

                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                              Parameters

                                                                                                                                                                                                                                                                                                                                                                                                                              Returns void

                                                                                                                                                                                                                                                                                                                                                                                                                            diff --git a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/functions/runtime.registerResourceOutputs.html b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/functions/runtime.registerResourceOutputs.html index 9cf7d2ad4e6a..fd96b8f080c8 100644 --- a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/functions/runtime.registerResourceOutputs.html +++ b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/functions/runtime.registerResourceOutputs.html @@ -1,3 +1,3 @@ -registerResourceOutputs | @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                                                            @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                                                              Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                              Function registerResourceOutputs

                                                                                                                                                                                                                                                                                                                                                                                                                              diff --git a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/functions/runtime.registerResourcePackage.html b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/functions/runtime.registerResourcePackage.html index e5bf1624ff43..ca5b49d11c26 100644 --- a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/functions/runtime.registerResourcePackage.html +++ b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/functions/runtime.registerResourcePackage.html @@ -1,4 +1,4 @@ -registerResourcePackage | @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                                                              @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                                                                Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                Function registerResourcePackage

                                                                                                                                                                                                                                                                                                                                                                                                                                • Registers a resource package that will be used to construct providers for any +registerResourcePackage | @pulumi/pulumi - v3.243.0

                                                                                                                                                                                                                                                                                                                                                                                                                                  @pulumi/pulumi - v3.243.0
                                                                                                                                                                                                                                                                                                                                                                                                                                    Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                    Function registerResourcePackage

                                                                                                                                                                                                                                                                                                                                                                                                                                    • Registers a resource package that will be used to construct providers for any URNs matching the package name and version that are deserialized by the current instance of the Pulumi JavaScript SDK.

                                                                                                                                                                                                                                                                                                                                                                                                                                      -

                                                                                                                                                                                                                                                                                                                                                                                                                                      Parameters

                                                                                                                                                                                                                                                                                                                                                                                                                                      Returns void

                                                                                                                                                                                                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                                                                                                                                                                                                    Parameters

                                                                                                                                                                                                                                                                                                                                                                                                                                    Returns void

                                                                                                                                                                                                                                                                                                                                                                                                                                  diff --git a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/functions/runtime.registerResourceTransform.html b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/functions/runtime.registerResourceTransform.html index 83f344ceeee3..30e9a2559672 100644 --- a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/functions/runtime.registerResourceTransform.html +++ b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/functions/runtime.registerResourceTransform.html @@ -1,3 +1,3 @@ -registerResourceTransform | @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                                                                  @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                                                                    Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                    Function registerResourceTransform

                                                                                                                                                                                                                                                                                                                                                                                                                                    diff --git a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/functions/runtime.registerStackTransform.html b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/functions/runtime.registerStackTransform.html index 52f4bd991f9b..5d48247af313 100644 --- a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/functions/runtime.registerStackTransform.html +++ b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/functions/runtime.registerStackTransform.html @@ -1,4 +1,4 @@ -registerStackTransform | @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                                                                    @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                                                                      Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                      Function registerStackTransform

                                                                                                                                                                                                                                                                                                                                                                                                                                      diff --git a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/functions/runtime.registerStackTransformation.html b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/functions/runtime.registerStackTransformation.html index 528fde23239d..515f644a7dd6 100644 --- a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/functions/runtime.registerStackTransformation.html +++ b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/functions/runtime.registerStackTransformation.html @@ -1,3 +1,3 @@ -registerStackTransformation | @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                                                                      @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                                                                        Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                        Function registerStackTransformation

                                                                                                                                                                                                                                                                                                                                                                                                                                        diff --git a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/functions/runtime.requirePulumiVersion.html b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/functions/runtime.requirePulumiVersion.html index 62a20b4256d6..73ce0b11d13f 100644 --- a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/functions/runtime.requirePulumiVersion.html +++ b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/functions/runtime.requirePulumiVersion.html @@ -1,7 +1,7 @@ -requirePulumiVersion | @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                                                                        @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                                                                          Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                          Function requirePulumiVersion

                                                                                                                                                                                                                                                                                                                                                                                                                                          • Checks if the engine we are connected to is compatible with the passed in version range. If the version is not +requirePulumiVersion | @pulumi/pulumi - v3.243.0

                                                                                                                                                                                                                                                                                                                                                                                                                                            @pulumi/pulumi - v3.243.0
                                                                                                                                                                                                                                                                                                                                                                                                                                              Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                              Function requirePulumiVersion

                                                                                                                                                                                                                                                                                                                                                                                                                                              • Checks if the engine we are connected to is compatible with the passed in version range. If the version is not compatible with the specified range, an exception is raised.

                                                                                                                                                                                                                                                                                                                                                                                                                                                Parameters

                                                                                                                                                                                                                                                                                                                                                                                                                                                • range: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                  The range to check. The supported syntax for the range is that of https://pkg.go.dev/github.com/blang/semver#ParseRange. For example ">=3.0.0", or "!3.1.2". Ranges can be AND-ed together by concatenating with spaces ">=3.5.0 !3.7.7", meaning greater-or-equal to 3.5.0 and not exactly 3.7.7. Ranges can be OR-ed with the || operator: "<3.4.0 || >3.8.0", meaning less-than 3.4.0 or greater-than 3.8.0.

                                                                                                                                                                                                                                                                                                                                                                                                                                                  -

                                                                                                                                                                                                                                                                                                                                                                                                                                                Returns Promise<void>

                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                            Returns Promise<void>

                                                                                                                                                                                                                                                                                                                                                                                                                                            diff --git a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/functions/runtime.resetOptions.html b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/functions/runtime.resetOptions.html index d9af19ef2282..bb0b785712fb 100644 --- a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/functions/runtime.resetOptions.html +++ b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/functions/runtime.resetOptions.html @@ -1,3 +1,3 @@ -resetOptions | @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                                                                            @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                                                                              Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                              Function resetOptions

                                                                                                                                                                                                                                                                                                                                                                                                                                              • Resets NodeJS runtime global state (such as RPC clients), and sets NodeJS +resetOptions | @pulumi/pulumi - v3.243.0

                                                                                                                                                                                                                                                                                                                                                                                                                                                @pulumi/pulumi - v3.243.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                  Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                  Function resetOptions

                                                                                                                                                                                                                                                                                                                                                                                                                                                  • Resets NodeJS runtime global state (such as RPC clients), and sets NodeJS runtime option environment variables to the specified values.

                                                                                                                                                                                                                                                                                                                                                                                                                                                    -

                                                                                                                                                                                                                                                                                                                                                                                                                                                    Parameters

                                                                                                                                                                                                                                                                                                                                                                                                                                                    • project: string
                                                                                                                                                                                                                                                                                                                                                                                                                                                    • stack: string
                                                                                                                                                                                                                                                                                                                                                                                                                                                    • parallel: number
                                                                                                                                                                                                                                                                                                                                                                                                                                                    • engineAddr: string
                                                                                                                                                                                                                                                                                                                                                                                                                                                    • monitorAddr: string
                                                                                                                                                                                                                                                                                                                                                                                                                                                    • preview: boolean
                                                                                                                                                                                                                                                                                                                                                                                                                                                    • organization: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                    Returns void

                                                                                                                                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                                                                                                                                  Parameters

                                                                                                                                                                                                                                                                                                                                                                                                                                                  • project: string
                                                                                                                                                                                                                                                                                                                                                                                                                                                  • stack: string
                                                                                                                                                                                                                                                                                                                                                                                                                                                  • parallel: number
                                                                                                                                                                                                                                                                                                                                                                                                                                                  • engineAddr: string
                                                                                                                                                                                                                                                                                                                                                                                                                                                  • monitorAddr: string
                                                                                                                                                                                                                                                                                                                                                                                                                                                  • preview: boolean
                                                                                                                                                                                                                                                                                                                                                                                                                                                  • organization: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                  Returns void

                                                                                                                                                                                                                                                                                                                                                                                                                                                diff --git a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/functions/runtime.resolveProperties.html b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/functions/runtime.resolveProperties.html index c656a17eefdc..7921711e08bf 100644 --- a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/functions/runtime.resolveProperties.html +++ b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/functions/runtime.resolveProperties.html @@ -1,8 +1,8 @@ -resolveProperties | @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                  Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                  Function resolveProperties

                                                                                                                                                                                                                                                                                                                                                                                                                                                  • Takes as input a gRPC serialized proto.google.protobuf.Struct and resolves +resolveProperties | @pulumi/pulumi - v3.243.0

                                                                                                                                                                                                                                                                                                                                                                                                                                                    @pulumi/pulumi - v3.243.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                      Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                      Function resolveProperties

                                                                                                                                                                                                                                                                                                                                                                                                                                                      • Takes as input a gRPC serialized proto.google.protobuf.Struct and resolves all of the resource's matching properties to the values inside.

                                                                                                                                                                                                                                                                                                                                                                                                                                                        NOTE: it is imperative that the properties in allProps were produced by deserializeProperties in order for output properties to work correctly w.r.t. knowns/unknowns: this function assumes that any undefined value in allPropsrepresents an unknown value that was returned by an engine operation.

                                                                                                                                                                                                                                                                                                                                                                                                                                                        -

                                                                                                                                                                                                                                                                                                                                                                                                                                                        Parameters

                                                                                                                                                                                                                                                                                                                                                                                                                                                        • res: Resource
                                                                                                                                                                                                                                                                                                                                                                                                                                                        • resolvers: Record<
                                                                                                                                                                                                                                                                                                                                                                                                                                                              string,
                                                                                                                                                                                                                                                                                                                                                                                                                                                              (
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  v: any,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  isKnown: boolean,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  isSecret: boolean,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  deps?: Resource[],
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  err?: Error,
                                                                                                                                                                                                                                                                                                                                                                                                                                                              ) => void,
                                                                                                                                                                                                                                                                                                                                                                                                                                                          >
                                                                                                                                                                                                                                                                                                                                                                                                                                                        • t: string
                                                                                                                                                                                                                                                                                                                                                                                                                                                        • name: string
                                                                                                                                                                                                                                                                                                                                                                                                                                                        • allProps: any
                                                                                                                                                                                                                                                                                                                                                                                                                                                        • deps: Record<string, Resource[]>
                                                                                                                                                                                                                                                                                                                                                                                                                                                        • Optionalerr: Error
                                                                                                                                                                                                                                                                                                                                                                                                                                                        • OptionalkeepUnknowns: boolean

                                                                                                                                                                                                                                                                                                                                                                                                                                                        Returns void

                                                                                                                                                                                                                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                                                                                                                                                                                                                      Parameters

                                                                                                                                                                                                                                                                                                                                                                                                                                                      • res: Resource
                                                                                                                                                                                                                                                                                                                                                                                                                                                      • resolvers: Record<
                                                                                                                                                                                                                                                                                                                                                                                                                                                            string,
                                                                                                                                                                                                                                                                                                                                                                                                                                                            (
                                                                                                                                                                                                                                                                                                                                                                                                                                                                v: any,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                isKnown: boolean,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                isSecret: boolean,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                deps?: Resource[],
                                                                                                                                                                                                                                                                                                                                                                                                                                                                err?: Error,
                                                                                                                                                                                                                                                                                                                                                                                                                                                            ) => void,
                                                                                                                                                                                                                                                                                                                                                                                                                                                        >
                                                                                                                                                                                                                                                                                                                                                                                                                                                      • t: string
                                                                                                                                                                                                                                                                                                                                                                                                                                                      • name: string
                                                                                                                                                                                                                                                                                                                                                                                                                                                      • allProps: any
                                                                                                                                                                                                                                                                                                                                                                                                                                                      • deps: Record<string, Resource[]>
                                                                                                                                                                                                                                                                                                                                                                                                                                                      • Optionalerr: Error
                                                                                                                                                                                                                                                                                                                                                                                                                                                      • OptionalkeepUnknowns: boolean

                                                                                                                                                                                                                                                                                                                                                                                                                                                      Returns void

                                                                                                                                                                                                                                                                                                                                                                                                                                                    diff --git a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/functions/runtime.rpcKeepAlive.html b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/functions/runtime.rpcKeepAlive.html index da42b82af288..d008d86ea4ac 100644 --- a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/functions/runtime.rpcKeepAlive.html +++ b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/functions/runtime.rpcKeepAlive.html @@ -1,4 +1,4 @@ -rpcKeepAlive | @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                    @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                      Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                      Function rpcKeepAlive

                                                                                                                                                                                                                                                                                                                                                                                                                                                      • Registers a pending call to ensure that we don't prematurely disconnect from +rpcKeepAlive | @pulumi/pulumi - v3.243.0

                                                                                                                                                                                                                                                                                                                                                                                                                                                        @pulumi/pulumi - v3.243.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                          Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                          Function rpcKeepAlive

                                                                                                                                                                                                                                                                                                                                                                                                                                                          • Registers a pending call to ensure that we don't prematurely disconnect from the server. It returns a function that, when invoked, signals that the RPC has completed.

                                                                                                                                                                                                                                                                                                                                                                                                                                                            -

                                                                                                                                                                                                                                                                                                                                                                                                                                                            Returns () => void

                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                          Returns () => void

                                                                                                                                                                                                                                                                                                                                                                                                                                                        diff --git a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/functions/runtime.runInPulumiStack.html b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/functions/runtime.runInPulumiStack.html index ecf535a44009..22ae62027086 100644 --- a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/functions/runtime.runInPulumiStack.html +++ b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/functions/runtime.runInPulumiStack.html @@ -1,4 +1,4 @@ -runInPulumiStack | @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                        @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                          Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                          Function runInPulumiStack

                                                                                                                                                                                                                                                                                                                                                                                                                                                          • Creates a new Pulumi stack resource and executes the callback inside of it. +runInPulumiStack | @pulumi/pulumi - v3.243.0

                                                                                                                                                                                                                                                                                                                                                                                                                                                            @pulumi/pulumi - v3.243.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                              Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Function runInPulumiStack

                                                                                                                                                                                                                                                                                                                                                                                                                                                              • Creates a new Pulumi stack resource and executes the callback inside of it. Any outputs returned by the callback will be stored as output properties on this resulting Stack object.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                Parameters

                                                                                                                                                                                                                                                                                                                                                                                                                                                                • init: () => Promise<any>

                                                                                                                                                                                                                                                                                                                                                                                                                                                                Returns Promise<Inputs | undefined>

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Parameters

                                                                                                                                                                                                                                                                                                                                                                                                                                                              • init: () => Promise<any>

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Returns Promise<Inputs | undefined>

                                                                                                                                                                                                                                                                                                                                                                                                                                                            diff --git a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/functions/runtime.serialize.html b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/functions/runtime.serialize.html index 1a7f0bc941f9..93be7f013ddf 100644 --- a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/functions/runtime.serialize.html +++ b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/functions/runtime.serialize.html @@ -1,2 +1,2 @@ -serialize | @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                            @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                              Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                              Function serialize

                                                                                                                                                                                                                                                                                                                                                                                                                                                              +serialize | @pulumi/pulumi - v3.243.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                              @pulumi/pulumi - v3.243.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                Function serialize

                                                                                                                                                                                                                                                                                                                                                                                                                                                                diff --git a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/functions/runtime.serializeFunction.html b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/functions/runtime.serializeFunction.html index 007fe60b9335..1b4200eae06a 100644 --- a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/functions/runtime.serializeFunction.html +++ b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/functions/runtime.serializeFunction.html @@ -1,4 +1,4 @@ -serializeFunction | @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Function serializeFunction

                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • Serializes a JavaScript function into a text form that can be loaded in +serializeFunction | @pulumi/pulumi - v3.243.0

                                                                                                                                                                                                                                                                                                                                                                                                                                                                    @pulumi/pulumi - v3.243.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Function serializeFunction

                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • Serializes a JavaScript function into a text form that can be loaded in another execution context, for example as part of a function callback associated with an AWS Lambda. The function serialization captures any variables captured by the function body and serializes those values into the @@ -23,4 +23,4 @@

                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Parameters

                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • func: Function

                                                                                                                                                                                                                                                                                                                                                                                                                                                                        The JavaScript function to serialize.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • args: SerializeFunctionArgs = {}

                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Arguments to use to control the serialization of the JavaScript function.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                        -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Returns Promise<SerializedFunction>

                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Returns Promise<SerializedFunction>

                                                                                                                                                                                                                                                                                                                                                                                                                                                                    diff --git a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/functions/runtime.serializeFunctionAsync.html b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/functions/runtime.serializeFunctionAsync.html index 72c4c2a53e14..e76cf3c9859b 100644 --- a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/functions/runtime.serializeFunctionAsync.html +++ b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/functions/runtime.serializeFunctionAsync.html @@ -1,2 +1,2 @@ -serializeFunctionAsync | @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                    @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Function serializeFunctionAsync

                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +serializeFunctionAsync | @pulumi/pulumi - v3.243.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                      @pulumi/pulumi - v3.243.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Function serializeFunctionAsync

                                                                                                                                                                                                                                                                                                                                                                                                                                                                        diff --git a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/functions/runtime.serializeProperties.html b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/functions/runtime.serializeProperties.html index 2c6d15f2ecd4..f67d714036d1 100644 --- a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/functions/runtime.serializeProperties.html +++ b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/functions/runtime.serializeProperties.html @@ -1,3 +1,3 @@ -serializeProperties | @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                        @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Function serializeProperties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                          diff --git a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/functions/runtime.serializeProperty.html b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/functions/runtime.serializeProperty.html index c05b82d28812..7940fa4acdb2 100644 --- a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/functions/runtime.serializeProperty.html +++ b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/functions/runtime.serializeProperty.html @@ -1,4 +1,4 @@ -serializeProperty | @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                          @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Function serializeProperty

                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • Serializes properties deeply. This understands how to wait on any unresolved +serializeProperty | @pulumi/pulumi - v3.243.0

                                                                                                                                                                                                                                                                                                                                                                                                                                                                              @pulumi/pulumi - v3.243.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Function serializeProperty

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • Serializes properties deeply. This understands how to wait on any unresolved promises, as appropriate, in addition to translating certain "special" values so that they are ready to go on the wire.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Parameters

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Returns Promise<any>

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Parameters

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Returns Promise<any>

                                                                                                                                                                                                                                                                                                                                                                                                                                                                              diff --git a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/functions/runtime.serializeResourceProperties.html b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/functions/runtime.serializeResourceProperties.html index 106fc89f3a38..7d94e6bae84c 100644 --- a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/functions/runtime.serializeResourceProperties.html +++ b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/functions/runtime.serializeResourceProperties.html @@ -1,4 +1,4 @@ -serializeResourceProperties | @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                              @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Function serializeResourceProperties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                diff --git a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/functions/runtime.setAllConfig.html b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/functions/runtime.setAllConfig.html index 24059132c4bc..f18017c32d4c 100644 --- a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/functions/runtime.setAllConfig.html +++ b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/functions/runtime.setAllConfig.html @@ -1,2 +1,2 @@ -setAllConfig | @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Function setAllConfig

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • Overwrites the configuration map.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Parameters

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • c: { [key: string]: string }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • OptionalsecretKeys: string[]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Returns void

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +setAllConfig | @pulumi/pulumi - v3.243.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  @pulumi/pulumi - v3.243.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Function setAllConfig

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • Overwrites the configuration map.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Parameters

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • c: { [key: string]: string }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • OptionalsecretKeys: string[]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Returns void

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    diff --git a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/functions/runtime.setConfig.html b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/functions/runtime.setConfig.html index 9742b14fb664..086849387ad5 100644 --- a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/functions/runtime.setConfig.html +++ b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/functions/runtime.setConfig.html @@ -1,2 +1,2 @@ -setConfig | @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Function setConfig

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +setConfig | @pulumi/pulumi - v3.243.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      @pulumi/pulumi - v3.243.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Function setConfig

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        diff --git a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/functions/runtime.setMockOptions.html b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/functions/runtime.setMockOptions.html index 835448fce6ad..d5219b0cab90 100644 --- a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/functions/runtime.setMockOptions.html +++ b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/functions/runtime.setMockOptions.html @@ -1 +1 @@ -setMockOptions | @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Function setMockOptions

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • Parameters

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • mockMonitor: any
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • Optionalproject: string
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • Optionalstack: string
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • Optionalpreview: boolean
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • Optionalorganization: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Returns void

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +setMockOptions | @pulumi/pulumi - v3.243.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          @pulumi/pulumi - v3.243.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Function setMockOptions

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • Parameters

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • mockMonitor: any
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • Optionalproject: string
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • Optionalstack: string
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • Optionalpreview: boolean
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • Optionalorganization: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Returns void

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            diff --git a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/functions/runtime.setMocks.html b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/functions/runtime.setMocks.html index cc283f88112b..294e288e0a54 100644 --- a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/functions/runtime.setMocks.html +++ b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/functions/runtime.setMocks.html @@ -1,7 +1,7 @@ -setMocks | @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Function setMocks

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • Configures the Pulumi runtime to use the given mocks for testing.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +setMocks | @pulumi/pulumi - v3.243.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                @pulumi/pulumi - v3.243.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Function setMocks

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • Configures the Pulumi runtime to use the given mocks for testing.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Parameters

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • mocks: Mocks

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The mocks to use for calls to provider functions and resource construction.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • Optionalproject: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      If provided, the name of the Pulumi project. Defaults to "project".

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • Optionalstack: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      If provided, the name of the Pulumi stack. Defaults to "stack".

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • Optionalpreview: boolean

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      If provided, indicates whether or not the program is running a preview. Defaults to false.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • Optionalorganization: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      If provided, the name of the Pulumi organization. Defaults to nothing.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Returns Promise<void>

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Returns Promise<void>

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                diff --git a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/functions/runtime.setRootResource.html b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/functions/runtime.setRootResource.html index e7824ea71d0c..bc0567298b25 100644 --- a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/functions/runtime.setRootResource.html +++ b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/functions/runtime.setRootResource.html @@ -1,3 +1,3 @@ -setRootResource | @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Function setRootResource

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  diff --git a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/functions/runtime.supportsParameterization.html b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/functions/runtime.supportsParameterization.html index 7c21ad197a78..195e985a13c3 100644 --- a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/functions/runtime.supportsParameterization.html +++ b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/functions/runtime.supportsParameterization.html @@ -1,2 +1,2 @@ -supportsParameterization | @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Function supportsParameterization

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +supportsParameterization | @pulumi/pulumi - v3.243.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    @pulumi/pulumi - v3.243.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Function supportsParameterization

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      diff --git a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/functions/runtime.suppressUnhandledGrpcRejections.html b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/functions/runtime.suppressUnhandledGrpcRejections.html index 8414d1a1ed35..82af703f768b 100644 --- a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/functions/runtime.suppressUnhandledGrpcRejections.html +++ b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/functions/runtime.suppressUnhandledGrpcRejections.html @@ -1,3 +1,3 @@ -suppressUnhandledGrpcRejections | @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Function suppressUnhandledGrpcRejections

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • Silences any unhandled promise rejections that occur due to gRPC errors. The +suppressUnhandledGrpcRejections | @pulumi/pulumi - v3.243.0

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          @pulumi/pulumi - v3.243.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Function suppressUnhandledGrpcRejections

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • Silences any unhandled promise rejections that occur due to gRPC errors. The input promise may still be rejected.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Type Parameters

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • T

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Parameters

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • p: Promise<T>

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Returns Promise<T>

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Type Parameters

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • T

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Parameters

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            • p: Promise<T>

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Returns Promise<T>

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          diff --git a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/functions/runtime.terminateRpcs.html b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/functions/runtime.terminateRpcs.html index b393399d7437..7d8d0cc22de8 100644 --- a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/functions/runtime.terminateRpcs.html +++ b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/functions/runtime.terminateRpcs.html @@ -1 +1 @@ -terminateRpcs | @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Function terminateRpcs

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +terminateRpcs | @pulumi/pulumi - v3.243.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            @pulumi/pulumi - v3.243.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Function terminateRpcs

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              diff --git a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/functions/runtime.transferProperties.html b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/functions/runtime.transferProperties.html index caaed45df8da..2ca9de288238 100644 --- a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/functions/runtime.transferProperties.html +++ b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/functions/runtime.transferProperties.html @@ -1,4 +1,4 @@ -transferProperties | @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Function transferProperties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • Mutates the onto resource so that it has Promise-valued properties for all +transferProperties | @pulumi/pulumi - v3.243.0

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  @pulumi/pulumi - v3.243.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Function transferProperties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • Mutates the onto resource so that it has Promise-valued properties for all the props input/output props. Importantly all these promises are completely unresolved. This is because we don't want anyone to observe the values of these properties until the rpc call to registerResource actually @@ -9,4 +9,4 @@ registerResource RPC call comes back, the values that the engine actualy produced will be used to resolve all the unresolved promised placed on onto.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Parameters

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Returns OutputResolvers

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Parameters

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Returns OutputResolvers

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  diff --git a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/functions/runtime.unwrapRpcSecret.html b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/functions/runtime.unwrapRpcSecret.html index 1af6124969f5..795e270a6641 100644 --- a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/functions/runtime.unwrapRpcSecret.html +++ b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/functions/runtime.unwrapRpcSecret.html @@ -1,3 +1,3 @@ -unwrapRpcSecret | @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Function unwrapRpcSecret

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • Returns the underlying value for a secret, or the value itself if it was not +unwrapRpcSecret | @pulumi/pulumi - v3.243.0

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      @pulumi/pulumi - v3.243.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Function unwrapRpcSecret

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • Returns the underlying value for a secret, or the value itself if it was not a secret.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Parameters

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • obj: any

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Returns any

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Parameters

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • obj: any

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Returns any

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      diff --git a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/functions/secret.html b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/functions/secret.html index 8e5c14e06b29..c819e451c525 100644 --- a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/functions/secret.html +++ b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/functions/secret.html @@ -1,5 +1,5 @@ -secret | @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Function secret

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        diff --git a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/functions/unsecret.html b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/functions/unsecret.html index 885fd0dcf99b..7541a2c874f9 100644 --- a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/functions/unsecret.html +++ b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/functions/unsecret.html @@ -1,3 +1,3 @@ -unsecret | @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Function unsecret

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          diff --git a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/hierarchy.html b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/hierarchy.html index e795272bca82..fbd0b5497649 100644 --- a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/hierarchy.html +++ b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/hierarchy.html @@ -1 +1 @@ -@pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            @pulumi/pulumi - v3.242.0

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Hierarchy Summary

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +@pulumi/pulumi - v3.243.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            @pulumi/pulumi - v3.243.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              @pulumi/pulumi - v3.243.0

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Hierarchy Summary

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              diff --git a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/index.html b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/index.html index 031509238dcd..2b0dab1fad2e 100644 --- a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/index.html +++ b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/index.html @@ -1,4 +1,4 @@ -@pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                @pulumi/pulumi - v3.242.0

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Pulumi Node.js SDK

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +@pulumi/pulumi - v3.243.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                @pulumi/pulumi - v3.243.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  @pulumi/pulumi - v3.243.0

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Pulumi Node.js SDK

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The Pulumi Node.js SDK lets you write cloud programs in JavaScript.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Using npm:

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  @@ -24,4 +24,4 @@
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  diff --git a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/Alias.html b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/Alias.html index 322daeac709d..dbc585cbddd5 100644 --- a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/Alias.html +++ b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/Alias.html @@ -1,4 +1,4 @@ -Alias | @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Interface Alias

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Alias is a partial description of prior names used for a resource. It +Alias | @pulumi/pulumi - v3.243.0

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    @pulumi/pulumi - v3.243.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Interface Alias

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Alias is a partial description of prior names used for a resource. It can be processed in the context of a resource creation to determine what the full aliased URN would be.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Note there is a semantic difference between properties being absent from this @@ -16,20 +16,20 @@

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      aliases: [{ parent: pulumi.rootStackResource }]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      This form is self-descriptive and makes the intent clearer than using:

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      aliases: [{ parent: undefined }]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      interface Alias {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          name?: Input<string>;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          parent?: Resource | Input<string>;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          project?: Input<string>;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          stack?: Input<string>;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          type?: Input<string>;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      interface Alias {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          name?: Input<string>;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          parent?: Resource | Input<string>;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          project?: Input<string>;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          stack?: Input<string>;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          type?: Input<string>;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      name?: Input<string>

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The previous name of the resource. If not provided, the current name of the resource is used.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      parent?: Resource | Input<string>

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The previous parent of the resource. If not provided (i.e. { name: "foo" }), the current parent of the resource is used (opts.parent if +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      parent?: Resource | Input<string>

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The previous parent of the resource. If not provided (i.e. { name: "foo" }), the current parent of the resource is used (opts.parent if provided, else the implicit stack resource parent).

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      To specify no original parent, use { parent: pulumi.rootStackResource }.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      project?: Input<string>

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The previous project of the resource. If not provided, defaults to +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      project?: Input<string>

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The previous project of the resource. If not provided, defaults to pulumi.getProject().

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      stack?: Input<string>

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The previous stack of the resource. If not provided, defaults to +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      stack?: Input<string>

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The previous stack of the resource. If not provided, defaults to pulumi.getStack().

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      type?: Input<string>

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The previous type of the resource. If not provided, the current type of +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      type?: Input<string>

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The previous type of the resource. If not provided, the current type of the resource is used.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      diff --git a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/ComponentResourceOptions.html b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/ComponentResourceOptions.html index 4a02a5c4abbd..cdacd199e5a9 100644 --- a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/ComponentResourceOptions.html +++ b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/ComponentResourceOptions.html @@ -1,6 +1,6 @@ -ComponentResourceOptions | @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Interface ComponentResourceOptions

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        ComponentResourceOptions is a bag of optional settings that control a +ComponentResourceOptions | @pulumi/pulumi - v3.243.0

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        @pulumi/pulumi - v3.243.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Interface ComponentResourceOptions

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          ComponentResourceOptions is a bag of optional settings that control a component resource's behavior.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          interface ComponentResourceOptions {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              aliases?: Input<string | Alias>[];
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              customTimeouts?: CustomTimeouts;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              deletedWith?: Resource;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              dependsOn?: Input<Resource> | Input<Input<Resource>[]>;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              envVarMappings?: Record<string, string>;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              hideDiffs?: string[];
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              hooks?: ResourceHookBinding;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              id?: Input<string>;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              ignoreChanges?: string[];
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              parent?: Resource;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              pluginDownloadURL?: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              protect?: boolean;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              provider?: ProviderResource;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              providers?: Record<string, ProviderResource> | ProviderResource[];
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              replacementTrigger?: any;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              replaceOnChanges?: string[];
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              replaceWith?: Resource[];
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              retainOnDelete?: boolean;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              transformations?: ResourceTransformation[];
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              transforms?: ResourceTransform[];
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              urn?: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              version?: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Hierarchy (View Summary)

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          interface ComponentResourceOptions {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              aliases?: Input<string | Alias>[];
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              customTimeouts?: CustomTimeouts;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              deletedWith?: Resource;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              dependsOn?: Input<Resource> | Input<Input<Resource>[]>;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              envVarMappings?: Record<string, string>;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              hideDiffs?: string[];
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              hooks?: ResourceHookBinding;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              id?: Input<string>;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              ignoreChanges?: string[];
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              parent?: Resource;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              pluginDownloadURL?: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              protect?: boolean;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              provider?: ProviderResource;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              providers?: Record<string, ProviderResource> | ProviderResource[];
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              replacementTrigger?: any;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              replaceOnChanges?: string[];
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              replaceWith?: Resource[];
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              retainOnDelete?: boolean;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              transformations?: ResourceTransformation[];
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              transforms?: ResourceTransform[];
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              urn?: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              version?: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Hierarchy (View Summary)

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          aliases?: Input<string | Alias>[]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          An optional list of aliases to treat this resource as matching.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          customTimeouts?: CustomTimeouts

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          An optional customTimeouts configuration block.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          deletedWith?: Resource

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          If set, the providers Delete method will not be called for this resource +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          customTimeouts?: CustomTimeouts

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          An optional customTimeouts configuration block.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          deletedWith?: Resource

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          If set, the providers Delete method will not be called for this resource if specified is being deleted as well.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          dependsOn?: Input<Resource> | Input<Input<Resource>[]>

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          An optional additional explicit dependencies on other resources.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          envVarMappings?: Record<string, string>

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Environment variable mappings for provider resources. Maps source environment variable +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          dependsOn?: Input<Resource> | Input<Input<Resource>[]>

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          An optional additional explicit dependencies on other resources.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          envVarMappings?: Record<string, string>

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Environment variable mappings for provider resources. Maps source environment variable names to target names. If the source variable exists, the provider will see the target variable set to its value. For example, { "MY_VAR": "PROVIDER_VAR" } means if MY_VAR is set, the provider sees PROVIDER_VAR with MY_VAR's value.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          hideDiffs?: string[]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          A list of property paths where the diffs will be hidden. This only changes display logic.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Optional resource hooks to bind to this resource. The hooks will be +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          hideDiffs?: string[]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          A list of property paths where the diffs will be hidden. This only changes display logic.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Optional resource hooks to bind to this resource. The hooks will be invoked during certain step of the lifecycle of the resource.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          id?: Input<string>

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          An optional existing ID to load, rather than create.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          ignoreChanges?: string[]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Ignore changes to any of the specified properties.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          parent?: Resource

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          An optional parent resource to which this resource belongs.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          pluginDownloadURL?: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          An option to specify the URL from which to download this resources +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          id?: Input<string>

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          An optional existing ID to load, rather than create.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          ignoreChanges?: string[]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Ignore changes to any of the specified properties.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          parent?: Resource

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          An optional parent resource to which this resource belongs.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          pluginDownloadURL?: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          An option to specify the URL from which to download this resources associated plugin. This version overrides the URL information inferred from the current package and should rarely be used.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          protect?: boolean

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          When set to true, protect ensures this resource cannot be deleted.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          provider?: ProviderResource

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          An optional provider to use for this resource's CRUD operations. If no provider is supplied, +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          protect?: boolean

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          When set to true, protect ensures this resource cannot be deleted.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          provider?: ProviderResource

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          An optional provider to use for this resource's CRUD operations. If no provider is supplied, the default provider for the resource's package will be used. The default provider is pulled from the parent's provider bag (see also ComponentResourceOptions.providers).

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          If this is a [ComponentResourceOptions] do not provide both [provider] and [providers]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          providers?: Record<string, ProviderResource> | ProviderResource[]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          An optional set of providers to use for child resources. Either keyed by +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          providers?: Record<string, ProviderResource> | ProviderResource[]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          An optional set of providers to use for child resources. Either keyed by package name (e.g. "aws"), or just provided as an array. In the latter case, the package name will be retrieved from the provider itself.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Note: only a list should be used. Mapping keys are not respected.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          replacementTrigger?: any

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          If set, the engine will diff this with the last recorded value, and trigger a replace if they are not equal.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          replaceOnChanges?: string[]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Changes to any of these property paths will force a replacement. If this list includes "*", changes to any +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          replacementTrigger?: any

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          If set, the engine will diff this with the last recorded value, and trigger a replace if they are not equal.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          replaceOnChanges?: string[]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Changes to any of these property paths will force a replacement. If this list includes "*", changes to any properties will force a replacement. Initialization errors from previous deployments will require replacement instead of update only if "*" is passed.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          replaceWith?: Resource[]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          If set, the URNs of the resources whose replaces will also replace this resource.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          retainOnDelete?: boolean

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          If set to True, the providers Delete method will not be called for this resource.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          transformations?: ResourceTransformation[]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Optional list of transformations to apply to this resource during construction. The +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          replaceWith?: Resource[]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          If set, the URNs of the resources whose replaces will also replace this resource.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          retainOnDelete?: boolean

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          If set to True, the providers Delete method will not be called for this resource.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          transformations?: ResourceTransformation[]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Optional list of transformations to apply to this resource during construction. The transformations are applied in order, and are applied prior to transformation applied to parents walking from the resource up to the stack.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          transforms?: ResourceTransform[]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Optional list of transforms to apply to this resource during construction. The +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          transforms?: ResourceTransform[]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Optional list of transforms to apply to this resource during construction. The transforms are applied in order, and are applied prior to transforms applied to parents walking from the resource up to the stack.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          This property is experimental.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          urn?: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The URN of a previously-registered resource of this type to read from the engine.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          version?: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          An optional version, corresponding to the version of the provider plugin that should be used when operating on +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          urn?: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The URN of a previously-registered resource of this type to read from the engine.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          version?: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          An optional version, corresponding to the version of the provider plugin that should be used when operating on this resource. This version overrides the version information inferred from the current package and should rarely be used.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          diff --git a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/CustomResourceOptions.html b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/CustomResourceOptions.html index 77a32f1a645d..f56e6e8a9b68 100644 --- a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/CustomResourceOptions.html +++ b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/CustomResourceOptions.html @@ -1,6 +1,6 @@ -CustomResourceOptions | @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Interface CustomResourceOptions

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            CustomResourceOptions is a bag of optional settings that control a +CustomResourceOptions | @pulumi/pulumi - v3.243.0

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            @pulumi/pulumi - v3.243.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Interface CustomResourceOptions

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              CustomResourceOptions is a bag of optional settings that control a custom resource's behavior.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              interface CustomResourceOptions {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  additionalSecretOutputs?: string[];
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  aliases?: Input<string | Alias>[];
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  customTimeouts?: CustomTimeouts;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  deleteBeforeReplace?: boolean;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  deletedWith?: Resource;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  dependsOn?: Input<Resource> | Input<Input<Resource>[]>;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  envVarMappings?: Record<string, string>;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  hideDiffs?: string[];
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  hooks?: ResourceHookBinding;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  id?: Input<string>;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  ignoreChanges?: string[];
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  import?: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  parent?: Resource;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  pluginDownloadURL?: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  protect?: boolean;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  provider?: ProviderResource;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  replacementTrigger?: any;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  replaceOnChanges?: string[];
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  replaceWith?: Resource[];
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  retainOnDelete?: boolean;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  transformations?: ResourceTransformation[];
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  transforms?: ResourceTransform[];
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  urn?: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  version?: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Hierarchy (View Summary)

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              interface CustomResourceOptions {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  additionalSecretOutputs?: string[];
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  aliases?: Input<string | Alias>[];
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  customTimeouts?: CustomTimeouts;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  deleteBeforeReplace?: boolean;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  deletedWith?: Resource;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  dependsOn?: Input<Resource> | Input<Input<Resource>[]>;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  envVarMappings?: Record<string, string>;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  hideDiffs?: string[];
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  hooks?: ResourceHookBinding;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  id?: Input<string>;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  ignoreChanges?: string[];
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  import?: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  parent?: Resource;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  pluginDownloadURL?: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  protect?: boolean;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  provider?: ProviderResource;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  replacementTrigger?: any;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  replaceOnChanges?: string[];
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  replaceWith?: Resource[];
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  retainOnDelete?: boolean;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  transformations?: ResourceTransformation[];
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  transforms?: ResourceTransform[];
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  urn?: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  version?: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Hierarchy (View Summary)

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              additionalSecretOutputs? aliases? customTimeouts? deleteBeforeReplace? @@ -28,51 +28,51 @@ This augments the list that the resource provider and Pulumi engine already determine based on inputs to your resource. It can be used to mark certain ouputs as a secrets on a per resource basis.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              aliases?: Input<string | Alias>[]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              An optional list of aliases to treat this resource as matching.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              customTimeouts?: CustomTimeouts

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              An optional customTimeouts configuration block.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              deleteBeforeReplace?: boolean

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              When set to true, indicates that this resource should be deleted before +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              aliases?: Input<string | Alias>[]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              An optional list of aliases to treat this resource as matching.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              customTimeouts?: CustomTimeouts

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              An optional customTimeouts configuration block.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              deleteBeforeReplace?: boolean

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              When set to true, indicates that this resource should be deleted before its replacement is created when replacement is necessary.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              deletedWith?: Resource

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              If set, the providers Delete method will not be called for this resource +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              deletedWith?: Resource

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              If set, the providers Delete method will not be called for this resource if specified is being deleted as well.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              dependsOn?: Input<Resource> | Input<Input<Resource>[]>

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              An optional additional explicit dependencies on other resources.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              envVarMappings?: Record<string, string>

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Environment variable mappings for provider resources. Maps source environment variable +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              dependsOn?: Input<Resource> | Input<Input<Resource>[]>

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              An optional additional explicit dependencies on other resources.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              envVarMappings?: Record<string, string>

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Environment variable mappings for provider resources. Maps source environment variable names to target names. If the source variable exists, the provider will see the target variable set to its value. For example, { "MY_VAR": "PROVIDER_VAR" } means if MY_VAR is set, the provider sees PROVIDER_VAR with MY_VAR's value.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              hideDiffs?: string[]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              A list of property paths where the diffs will be hidden. This only changes display logic.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Optional resource hooks to bind to this resource. The hooks will be +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              hideDiffs?: string[]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              A list of property paths where the diffs will be hidden. This only changes display logic.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Optional resource hooks to bind to this resource. The hooks will be invoked during certain step of the lifecycle of the resource.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              id?: Input<string>

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              An optional existing ID to load, rather than create.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              ignoreChanges?: string[]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Ignore changes to any of the specified properties.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              import?: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              When provided with a resource ID, indicates that this resource's provider +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              id?: Input<string>

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              An optional existing ID to load, rather than create.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              ignoreChanges?: string[]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Ignore changes to any of the specified properties.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              import?: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              When provided with a resource ID, indicates that this resource's provider should import its state from the cloud resource with the given ID. The inputs to the resource's constructor must align with the resource's current state. Once a resource has been imported, the import property must be removed from the resource's options.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              parent?: Resource

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              An optional parent resource to which this resource belongs.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              pluginDownloadURL?: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              An option to specify the URL from which to download this resources +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              parent?: Resource

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              An optional parent resource to which this resource belongs.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              pluginDownloadURL?: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              An option to specify the URL from which to download this resources associated plugin. This version overrides the URL information inferred from the current package and should rarely be used.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              protect?: boolean

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              When set to true, protect ensures this resource cannot be deleted.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              provider?: ProviderResource

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              An optional provider to use for this resource's CRUD operations. If no provider is supplied, +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              protect?: boolean

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              When set to true, protect ensures this resource cannot be deleted.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              provider?: ProviderResource

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              An optional provider to use for this resource's CRUD operations. If no provider is supplied, the default provider for the resource's package will be used. The default provider is pulled from the parent's provider bag (see also ComponentResourceOptions.providers).

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              If this is a [ComponentResourceOptions] do not provide both [provider] and [providers]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              replacementTrigger?: any

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              If set, the engine will diff this with the last recorded value, and trigger a replace if they are not equal.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              replaceOnChanges?: string[]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Changes to any of these property paths will force a replacement. If this list includes "*", changes to any +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              replacementTrigger?: any

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              If set, the engine will diff this with the last recorded value, and trigger a replace if they are not equal.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              replaceOnChanges?: string[]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Changes to any of these property paths will force a replacement. If this list includes "*", changes to any properties will force a replacement. Initialization errors from previous deployments will require replacement instead of update only if "*" is passed.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              replaceWith?: Resource[]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              If set, the URNs of the resources whose replaces will also replace this resource.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              retainOnDelete?: boolean

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              If set to True, the providers Delete method will not be called for this resource.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              transformations?: ResourceTransformation[]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Optional list of transformations to apply to this resource during construction. The +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              replaceWith?: Resource[]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              If set, the URNs of the resources whose replaces will also replace this resource.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              retainOnDelete?: boolean

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              If set to True, the providers Delete method will not be called for this resource.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              transformations?: ResourceTransformation[]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Optional list of transformations to apply to this resource during construction. The transformations are applied in order, and are applied prior to transformation applied to parents walking from the resource up to the stack.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              transforms?: ResourceTransform[]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Optional list of transforms to apply to this resource during construction. The +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              transforms?: ResourceTransform[]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Optional list of transforms to apply to this resource during construction. The transforms are applied in order, and are applied prior to transforms applied to parents walking from the resource up to the stack.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              This property is experimental.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              urn?: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              The URN of a previously-registered resource of this type to read from the engine.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              version?: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              An optional version, corresponding to the version of the provider plugin that should be used when operating on +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              urn?: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              The URN of a previously-registered resource of this type to read from the engine.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              version?: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              An optional version, corresponding to the version of the provider plugin that should be used when operating on this resource. This version overrides the version information inferred from the current package and should rarely be used.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              diff --git a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/CustomTimeouts.html b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/CustomTimeouts.html index 3224b2a8f0b0..013f35868562 100644 --- a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/CustomTimeouts.html +++ b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/CustomTimeouts.html @@ -1,7 +1,7 @@ -CustomTimeouts | @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Interface CustomTimeouts

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                interface CustomTimeouts {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    create?: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    delete?: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    update?: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                create? +CustomTimeouts | @pulumi/pulumi - v3.243.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                @pulumi/pulumi - v3.243.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Interface CustomTimeouts

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  interface CustomTimeouts {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      create?: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      delete?: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      update?: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  create?: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The optional create timeout represented as a string e.g. 5m, 40s, 1d.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  delete?: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The optional delete timeout represented as a string e.g. 5m, 40s, 1d.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  update?: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The optional update timeout represented as a string e.g. 5m, 40s, 1d.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  delete?: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The optional delete timeout represented as a string e.g. 5m, 40s, 1d.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  update?: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The optional update timeout represented as a string e.g. 5m, 40s, 1d.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  diff --git a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/ErrorHookArgs.html b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/ErrorHookArgs.html index 70e5063522b8..d6719dd7dea9 100644 --- a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/ErrorHookArgs.html +++ b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/ErrorHookArgs.html @@ -1,4 +1,4 @@ -ErrorHookArgs | @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Interface ErrorHookArgs

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    ErrorHookArgs represents the arguments passed to an error hook.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +ErrorHookArgs | @pulumi/pulumi - v3.243.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    @pulumi/pulumi - v3.243.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Interface ErrorHookArgs

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      ErrorHookArgs represents the arguments passed to an error hook.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Depending on the failed operation, only some of the new/old inputs/outputs are set.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      @@ -30,7 +30,7 @@
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      interface ErrorHookArgs {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          errors: string[];
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          failedOperation: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          id: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          name: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          newInputs?: Record<string, any>;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          oldInputs?: Record<string, any>;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          oldOutputs?: Record<string, any>;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          type: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          urn: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      interface ErrorHookArgs {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          errors: string[];
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          failedOperation: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          id: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          name: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          newInputs?: Record<string, any>;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          oldInputs?: Record<string, any>;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          oldOutputs?: Record<string, any>;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          type: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          urn: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      errors failedOperation id name @@ -40,12 +40,12 @@ type urn

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      errors: string[]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The errors that have been seen so far (newest first).

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      failedOperation: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The operation that failed (create, update, or delete).

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      id: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The ID of the resource that triggered the hook.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      name: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The name of the resource that triggered the hook.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      newInputs?: Record<string, any>

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The new inputs of the resource that triggered the hook.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      oldInputs?: Record<string, any>

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The old inputs of the resource that triggered the hook.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      oldOutputs?: Record<string, any>

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The old outputs of the resource that triggered the hook.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      type: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The type of the resource that triggered the hook.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      urn: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The URN of the resource that triggered the hook.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      failedOperation: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The operation that failed (create, update, or delete).

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      id: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The ID of the resource that triggered the hook.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      name: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The name of the resource that triggered the hook.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      newInputs?: Record<string, any>

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The new inputs of the resource that triggered the hook.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      oldInputs?: Record<string, any>

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The old inputs of the resource that triggered the hook.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      oldOutputs?: Record<string, any>

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The old outputs of the resource that triggered the hook.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      type: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The type of the resource that triggered the hook.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      urn: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The URN of the resource that triggered the hook.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      diff --git a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/InputPropertyErrorDetails.html b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/InputPropertyErrorDetails.html index 0a0e63417732..a0af8519d24c 100644 --- a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/InputPropertyErrorDetails.html +++ b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/InputPropertyErrorDetails.html @@ -1,3 +1,3 @@ -InputPropertyErrorDetails | @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Interface InputPropertyErrorDetails

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        interface InputPropertyErrorDetails {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            propertyPath: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            reason: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        propertyPath +InputPropertyErrorDetails | @pulumi/pulumi - v3.243.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        @pulumi/pulumi - v3.243.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Interface InputPropertyErrorDetails

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          interface InputPropertyErrorDetails {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              propertyPath: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              reason: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          propertyPath: string
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          reason: string
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          propertyPath: string
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          reason: string
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          diff --git a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/InvokeOptions.html b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/InvokeOptions.html index 2831ebbf5c4c..b12d6df01673 100644 --- a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/InvokeOptions.html +++ b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/InvokeOptions.html @@ -1,6 +1,6 @@ -InvokeOptions | @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Interface InvokeOptions

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            InvokeOptions is a bag of options that control the behavior of a call +InvokeOptions | @pulumi/pulumi - v3.243.0

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            @pulumi/pulumi - v3.243.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Interface InvokeOptions

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              InvokeOptions is a bag of options that control the behavior of a call to runtime.invoke.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              interface InvokeOptions {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  async?: boolean;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  parent?: Resource;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  pluginDownloadURL?: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  provider?: ProviderResource;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  version?: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Hierarchy (View Summary)

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              interface InvokeOptions {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  async?: boolean;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  parent?: Resource;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  pluginDownloadURL?: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  provider?: ProviderResource;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  version?: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Hierarchy (View Summary)

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              async? parent? pluginDownloadURL? provider? @@ -10,12 +10,12 @@ false to get the non-Promise side of the result. Invoking data source functions synchronously is deprecated. The ability to do this will be removed at a later point in time.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              parent?: Resource

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              An optional parent to use for default options for this invoke (e.g. the default provider to use).

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              pluginDownloadURL?: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              An option to specify the URL from which to download this resources +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              parent?: Resource

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              An optional parent to use for default options for this invoke (e.g. the default provider to use).

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              pluginDownloadURL?: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              An option to specify the URL from which to download this resources associated plugin. This version overrides the URL information inferred from the current package and should rarely be used.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              provider?: ProviderResource

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              An optional provider to use for this invocation. If no provider is supplied, the default provider for the +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              provider?: ProviderResource

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              An optional provider to use for this invocation. If no provider is supplied, the default provider for the invoked function's package will be used.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              version?: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              An optional version, corresponding to the version of the provider plugin +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              version?: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              An optional version, corresponding to the version of the provider plugin that should be used when performing this invoke.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              diff --git a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/InvokeOutputOptions.html b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/InvokeOutputOptions.html index 677143980600..6bfa098d3f16 100644 --- a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/InvokeOutputOptions.html +++ b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/InvokeOutputOptions.html @@ -1,6 +1,6 @@ -InvokeOutputOptions | @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Interface InvokeOutputOptions

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                InvokeOutputOptions is a bag of options that control the behavior of a call +InvokeOutputOptions | @pulumi/pulumi - v3.243.0

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                @pulumi/pulumi - v3.243.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Interface InvokeOutputOptions

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  InvokeOutputOptions is a bag of options that control the behavior of a call to runtime.invokeOutput.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  interface InvokeOutputOptions {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      async?: boolean;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      dependsOn?: Input<Resource> | Input<Input<Resource>[]>;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      parent?: Resource;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      pluginDownloadURL?: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      provider?: ProviderResource;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      version?: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Hierarchy (View Summary)

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  interface InvokeOutputOptions {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      async?: boolean;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      dependsOn?: Input<Resource> | Input<Input<Resource>[]>;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      parent?: Resource;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      pluginDownloadURL?: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      provider?: ProviderResource;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      version?: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Hierarchy (View Summary)

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  async? dependsOn? parent? pluginDownloadURL? @@ -11,13 +11,13 @@ false to get the non-Promise side of the result. Invoking data source functions synchronously is deprecated. The ability to do this will be removed at a later point in time.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  dependsOn?: Input<Resource> | Input<Input<Resource>[]>

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  An optional set of additional explicit dependencies on other resources.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  parent?: Resource

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  An optional parent to use for default options for this invoke (e.g. the default provider to use).

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  pluginDownloadURL?: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  An option to specify the URL from which to download this resources +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  dependsOn?: Input<Resource> | Input<Input<Resource>[]>

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  An optional set of additional explicit dependencies on other resources.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  parent?: Resource

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  An optional parent to use for default options for this invoke (e.g. the default provider to use).

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  pluginDownloadURL?: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  An option to specify the URL from which to download this resources associated plugin. This version overrides the URL information inferred from the current package and should rarely be used.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  provider?: ProviderResource

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  An optional provider to use for this invocation. If no provider is supplied, the default provider for the +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  provider?: ProviderResource

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  An optional provider to use for this invocation. If no provider is supplied, the default provider for the invoked function's package will be used.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  version?: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  An optional version, corresponding to the version of the provider plugin +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  version?: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  An optional version, corresponding to the version of the provider plugin that should be used when performing this invoke.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  diff --git a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/InvokeTransformArgs.html b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/InvokeTransformArgs.html index 4b135ec8302b..666795455bfb 100644 --- a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/InvokeTransformArgs.html +++ b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/InvokeTransformArgs.html @@ -1,8 +1,8 @@ -InvokeTransformArgs | @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Interface InvokeTransformArgs

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    InvokeTransformArgs is the argument bag passed to a invoke transform.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    interface InvokeTransformArgs {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        args: Inputs;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        opts: InvokeOptions;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        token: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    args +InvokeTransformArgs | @pulumi/pulumi - v3.243.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    @pulumi/pulumi - v3.243.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Interface InvokeTransformArgs

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      InvokeTransformArgs is the argument bag passed to a invoke transform.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      interface InvokeTransformArgs {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          args: Inputs;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          opts: InvokeOptions;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          token: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      args: Inputs

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The original args passed to the Invoke constructor.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The original invoke options passed to the Invoke constructor.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      token: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The token of the Invoke.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The original invoke options passed to the Invoke constructor.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      token: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The token of the Invoke.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      diff --git a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/InvokeTransformResult.html b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/InvokeTransformResult.html index 346b61f5930c..269cbcf505fd 100644 --- a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/InvokeTransformResult.html +++ b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/InvokeTransformResult.html @@ -1,8 +1,8 @@ -InvokeTransformResult | @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Interface InvokeTransformResult

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        InvokeTransformResult is the result that must be returned by an invoke +InvokeTransformResult | @pulumi/pulumi - v3.243.0

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        @pulumi/pulumi - v3.243.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Interface InvokeTransformResult

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          InvokeTransformResult is the result that must be returned by an invoke transform callback. It includes new values to use for the args and opts of the Invoke in place of the originally provided values.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          interface InvokeTransformResult {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              args: Inputs;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              opts: InvokeOptions;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          interface InvokeTransformResult {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              args: Inputs;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              opts: InvokeOptions;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          args: Inputs

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The new properties to use in place of the original args

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The new resource options to use in place of the original opts

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The new resource options to use in place of the original opts

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          diff --git a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/NumberConfigOptions.html b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/NumberConfigOptions.html index f040f4c10b11..e54720ff65d8 100644 --- a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/NumberConfigOptions.html +++ b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/NumberConfigOptions.html @@ -1,6 +1,6 @@ -NumberConfigOptions | @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Interface NumberConfigOptions

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            NumberConfigOptions may be used to constrain the set of legal values a number config value may contain.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            interface NumberConfigOptions {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                max?: number;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                min?: number;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            max? +NumberConfigOptions | @pulumi/pulumi - v3.243.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            @pulumi/pulumi - v3.243.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Interface NumberConfigOptions

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              NumberConfigOptions may be used to constrain the set of legal values a number config value may contain.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              interface NumberConfigOptions {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  max?: number;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  min?: number;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              max?: number

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              The maximum number value, inclusive. If the number is greater than this, a ConfigRangeError is thrown.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              min?: number

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              The minimum number value, inclusive. If the number is less than this, a ConfigRangeError is thrown.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              min?: number

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              The minimum number value, inclusive. If the number is less than this, a ConfigRangeError is thrown.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              diff --git a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/OutputConstructor.html b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/OutputConstructor.html index c7e3124d18d3..b9421c7e015d 100644 --- a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/OutputConstructor.html +++ b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/OutputConstructor.html @@ -1,5 +1,5 @@ -OutputConstructor | @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Interface OutputConstructor

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Static side of the Output type. Can be used to create outputs as well +OutputConstructor | @pulumi/pulumi - v3.243.0

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                @pulumi/pulumi - v3.243.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Interface OutputConstructor

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Static side of the Output type. Can be used to create outputs as well as test arbitrary values to see if they are Outputs.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  interface OutputConstructor {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      create<T>(val: Input<T>): Output<Unwrap<T>>;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      create<T>(val: Input<T> | undefined): Output<Unwrap<T> | undefined>;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      isInstance<T>(obj: any): obj is Output<T>;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Methods

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  interface OutputConstructor {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      create<T>(val: Input<T>): Output<Unwrap<T>>;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      create<T>(val: Input<T> | undefined): Output<Unwrap<T> | undefined>;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      isInstance<T>(obj: any): obj is Output<T>;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Methods

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Methods

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  diff --git a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/OutputInstance.html b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/OutputInstance.html index 1c1f1305b8dc..bc8cfcf822f8 100644 --- a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/OutputInstance.html +++ b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/OutputInstance.html @@ -1,6 +1,6 @@ -OutputInstance | @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Interface OutputInstance<T>

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Instance side of the Output type. Exposes the deployment-time and +OutputInstance | @pulumi/pulumi - v3.243.0

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    @pulumi/pulumi - v3.243.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Interface OutputInstance<T>

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Instance side of the Output type. Exposes the deployment-time and run-time mechanisms for working with the underlying value of an Output.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      interface OutputInstance<T> {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          apply<U>(func: (t: T) => Promise<U>): Output<U>;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          apply<U>(func: (t: T) => OutputInstance<U>): Output<U>;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          apply<U>(func: (t: T) => U): Output<U>;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          get(): T;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Type Parameters

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • T
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Methods

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      interface OutputInstance<T> {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          apply<U>(func: (t: T) => Promise<U>): Output<U>;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          apply<U>(func: (t: T) => OutputInstance<U>): Output<U>;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          apply<U>(func: (t: T) => U): Output<U>;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          get(): T;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Type Parameters

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • T
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Methods

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Methods

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • Retrieves the underlying value of this dependency.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        This function is only callable in code that runs in the cloud post-deployment. At this point all Output values will be known and can be safely retrieved. During Pulumi deployment or preview execution this must not be called (and will throw). This is because doing so would allow output values to flow into resources while losing the data that would allow the dependency graph to be changed.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Returns T

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Returns T

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      diff --git a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/ResourceHookArgs.html b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/ResourceHookArgs.html index 44eed3cd09a0..03ee5fe0b2c4 100644 --- a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/ResourceHookArgs.html +++ b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/ResourceHookArgs.html @@ -1,4 +1,4 @@ -ResourceHookArgs | @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Interface ResourceHookArgs

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        ResourceHookArgs represents the arguments passed to a resource hook +ResourceHookArgs | @pulumi/pulumi - v3.243.0

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        @pulumi/pulumi - v3.243.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Interface ResourceHookArgs

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          ResourceHookArgs represents the arguments passed to a resource hook Depending on the hook type, only some of the new/old inputs/outputs are set.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          @@ -55,7 +55,7 @@
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          interface ResourceHookArgs {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              id: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              name: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              newInputs?: Record<string, any>;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              newOutputs?: Record<string, any>;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              oldInputs?: Record<string, any>;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              oldOutputs?: Record<string, any>;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              type: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              urn: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          id +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          interface ResourceHookArgs {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              id: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              name: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              newInputs?: Record<string, any>;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              newOutputs?: Record<string, any>;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              oldInputs?: Record<string, any>;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              oldOutputs?: Record<string, any>;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              type: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              urn: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          id name newInputs? newOutputs? @@ -64,11 +64,11 @@ type urn

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          id: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The ID of the resource that triggered the hook.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          name: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The name of the resource that triggered the hook.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          newInputs?: Record<string, any>

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The new inputs of the resource that triggered the hook.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          newOutputs?: Record<string, any>

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The new outputs of the resource that triggered the hook.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          oldInputs?: Record<string, any>

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The old inputs of the resource that triggered the hook.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          oldOutputs?: Record<string, any>

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The old outputs of the resource that triggered the hook.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          type: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The type of the resource that triggered the hook.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          urn: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The URN of the resource that triggered the hook.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          name: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The name of the resource that triggered the hook.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          newInputs?: Record<string, any>

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The new inputs of the resource that triggered the hook.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          newOutputs?: Record<string, any>

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The new outputs of the resource that triggered the hook.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          oldInputs?: Record<string, any>

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The old inputs of the resource that triggered the hook.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          oldOutputs?: Record<string, any>

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The old outputs of the resource that triggered the hook.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          type: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The type of the resource that triggered the hook.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          urn: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The URN of the resource that triggered the hook.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          diff --git a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/ResourceHookBinding.html b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/ResourceHookBinding.html index 1ac128a1dc95..f18cbdd9172c 100644 --- a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/ResourceHookBinding.html +++ b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/ResourceHookBinding.html @@ -1,4 +1,4 @@ -ResourceHookBinding | @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Interface ResourceHookBinding

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Binds ResourceHook instances to a resource. The resource hooks will +ResourceHookBinding | @pulumi/pulumi - v3.243.0

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            @pulumi/pulumi - v3.243.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Interface ResourceHookBinding

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Binds ResourceHook instances to a resource. The resource hooks will be invoked during certain step of the lifecycle of the resource.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              before_${action} hooks that raise an exception cause the action to fail. after_${action} hooks that raise an exception will log a warning, but do @@ -6,7 +6,7 @@

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              When running pulumi destroy, before_delete and after_delete resource hooks require the operation to run with --run-program, to ensure that the program which defines the hooks is available.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Hooks to be invoked after the resource is created.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              afterDelete?: ResourceHook[]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Hooks to be invoked after the resource is deleted.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              afterDelete?: ResourceHook[]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Hooks to be invoked after the resource is deleted.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Note that delete hooks require that destroy operations are run with --run-program. Unlike other hook types, this argument requires named ResourceHook instances, and does not accept anonymous ResourceHookFunction. This is because the engine needs to be able to identify a hook when a resource is deleted.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Hooks to be invoked after the resource is updated.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              beforeCreate?: (ResourceHook | ResourceHookFunction)[]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Hooks to be invoked before the resource is created.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              beforeDelete?: ResourceHook[]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Hooks to be invoked before the resource is deleted.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Hooks to be invoked after the resource is updated.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              beforeCreate?: (ResourceHook | ResourceHookFunction)[]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Hooks to be invoked before the resource is created.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              beforeDelete?: ResourceHook[]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Hooks to be invoked before the resource is deleted.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Note that delete hooks require that destroy operations are run with --run-program. Unlike other hook types, this argument requires named ResourceHook instances, and does not accept anonymous ResourceHookFunction. This is because the engine needs to be able to identify a hook when a resource is deleted.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              beforeUpdate?: (ResourceHook | ResourceHookFunction)[]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Hooks to be invoked before the resource is updated.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              onError?: ErrorHook[]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Hooks to be invoked when an operation fails and is retryable.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              beforeUpdate?: (ResourceHook | ResourceHookFunction)[]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Hooks to be invoked before the resource is updated.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              onError?: ErrorHook[]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Hooks to be invoked when an operation fails and is retryable.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Note that error hooks require named ErrorHook instances, and do not accept anonymous functions. The callback can return true to retry the operation, or false to not retry.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              diff --git a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/ResourceHookOptions.html b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/ResourceHookOptions.html index 3078e1feac00..37972655f385 100644 --- a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/ResourceHookOptions.html +++ b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/ResourceHookOptions.html @@ -1,6 +1,6 @@ -ResourceHookOptions | @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Interface ResourceHookOptions

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Options for registering a resource hook.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                interface ResourceHookOptions {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    ignoreErrors?: boolean;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    onDryRun?: boolean;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                ignoreErrors? +ResourceHookOptions | @pulumi/pulumi - v3.243.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                @pulumi/pulumi - v3.243.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Interface ResourceHookOptions

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Options for registering a resource hook.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  interface ResourceHookOptions {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      ignoreErrors?: boolean;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      onDryRun?: boolean;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  ignoreErrors?: boolean

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  If true, errors from this hook are logged as warnings instead of failing the program.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  onDryRun?: boolean

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Run the hook during dry run (preview) operations. Defaults to false.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  onDryRun?: boolean

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Run the hook during dry run (preview) operations. Defaults to false.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  diff --git a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/ResourceOptions.html b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/ResourceOptions.html index e5215280bb7e..51d6328b5895 100644 --- a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/ResourceOptions.html +++ b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/ResourceOptions.html @@ -1,6 +1,6 @@ -ResourceOptions | @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Interface ResourceOptions

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    ResourceOptions is a bag of optional settings that control a +ResourceOptions | @pulumi/pulumi - v3.243.0

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    @pulumi/pulumi - v3.243.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Interface ResourceOptions

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      ResourceOptions is a bag of optional settings that control a resource's behavior.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      interface ResourceOptions {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          aliases?: Input<string | Alias>[];
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          customTimeouts?: CustomTimeouts;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          deletedWith?: Resource;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          dependsOn?: Input<Resource> | Input<Input<Resource>[]>;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          envVarMappings?: Record<string, string>;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          hideDiffs?: string[];
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          hooks?: ResourceHookBinding;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          id?: Input<string>;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          ignoreChanges?: string[];
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          parent?: Resource;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          pluginDownloadURL?: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          protect?: boolean;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          provider?: ProviderResource;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          replacementTrigger?: any;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          replaceOnChanges?: string[];
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          replaceWith?: Resource[];
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          retainOnDelete?: boolean;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          transformations?: ResourceTransformation[];
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          transforms?: ResourceTransform[];
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          urn?: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          version?: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Hierarchy (View Summary)

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      interface ResourceOptions {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          aliases?: Input<string | Alias>[];
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          customTimeouts?: CustomTimeouts;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          deletedWith?: Resource;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          dependsOn?: Input<Resource> | Input<Input<Resource>[]>;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          envVarMappings?: Record<string, string>;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          hideDiffs?: string[];
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          hooks?: ResourceHookBinding;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          id?: Input<string>;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          ignoreChanges?: string[];
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          parent?: Resource;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          pluginDownloadURL?: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          protect?: boolean;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          provider?: ProviderResource;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          replacementTrigger?: any;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          replaceOnChanges?: string[];
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          replaceWith?: Resource[];
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          retainOnDelete?: boolean;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          transformations?: ResourceTransformation[];
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          transforms?: ResourceTransform[];
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          urn?: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          version?: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Hierarchy (View Summary)

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      aliases?: Input<string | Alias>[]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      An optional list of aliases to treat this resource as matching.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      customTimeouts?: CustomTimeouts

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      An optional customTimeouts configuration block.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      deletedWith?: Resource

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      If set, the providers Delete method will not be called for this resource +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      customTimeouts?: CustomTimeouts

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      An optional customTimeouts configuration block.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      deletedWith?: Resource

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      If set, the providers Delete method will not be called for this resource if specified is being deleted as well.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      dependsOn?: Input<Resource> | Input<Input<Resource>[]>

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      An optional additional explicit dependencies on other resources.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      envVarMappings?: Record<string, string>

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Environment variable mappings for provider resources. Maps source environment variable +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      dependsOn?: Input<Resource> | Input<Input<Resource>[]>

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      An optional additional explicit dependencies on other resources.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      envVarMappings?: Record<string, string>

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Environment variable mappings for provider resources. Maps source environment variable names to target names. If the source variable exists, the provider will see the target variable set to its value. For example, { "MY_VAR": "PROVIDER_VAR" } means if MY_VAR is set, the provider sees PROVIDER_VAR with MY_VAR's value.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      hideDiffs?: string[]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      A list of property paths where the diffs will be hidden. This only changes display logic.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Optional resource hooks to bind to this resource. The hooks will be +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      hideDiffs?: string[]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      A list of property paths where the diffs will be hidden. This only changes display logic.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Optional resource hooks to bind to this resource. The hooks will be invoked during certain step of the lifecycle of the resource.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      id?: Input<string>

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      An optional existing ID to load, rather than create.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      ignoreChanges?: string[]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Ignore changes to any of the specified properties.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      parent?: Resource

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      An optional parent resource to which this resource belongs.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      pluginDownloadURL?: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      An option to specify the URL from which to download this resources +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      id?: Input<string>

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      An optional existing ID to load, rather than create.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      ignoreChanges?: string[]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Ignore changes to any of the specified properties.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      parent?: Resource

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      An optional parent resource to which this resource belongs.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      pluginDownloadURL?: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      An option to specify the URL from which to download this resources associated plugin. This version overrides the URL information inferred from the current package and should rarely be used.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      protect?: boolean

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      When set to true, protect ensures this resource cannot be deleted.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      provider?: ProviderResource

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      An optional provider to use for this resource's CRUD operations. If no provider is supplied, +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      protect?: boolean

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      When set to true, protect ensures this resource cannot be deleted.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      provider?: ProviderResource

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      An optional provider to use for this resource's CRUD operations. If no provider is supplied, the default provider for the resource's package will be used. The default provider is pulled from the parent's provider bag (see also ComponentResourceOptions.providers).

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      If this is a [ComponentResourceOptions] do not provide both [provider] and [providers]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      replacementTrigger?: any

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      If set, the engine will diff this with the last recorded value, and trigger a replace if they are not equal.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      replaceOnChanges?: string[]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Changes to any of these property paths will force a replacement. If this list includes "*", changes to any +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      replacementTrigger?: any

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      If set, the engine will diff this with the last recorded value, and trigger a replace if they are not equal.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      replaceOnChanges?: string[]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Changes to any of these property paths will force a replacement. If this list includes "*", changes to any properties will force a replacement. Initialization errors from previous deployments will require replacement instead of update only if "*" is passed.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      replaceWith?: Resource[]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      If set, the URNs of the resources whose replaces will also replace this resource.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      retainOnDelete?: boolean

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      If set to True, the providers Delete method will not be called for this resource.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      transformations?: ResourceTransformation[]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Optional list of transformations to apply to this resource during construction. The +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      replaceWith?: Resource[]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      If set, the URNs of the resources whose replaces will also replace this resource.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      retainOnDelete?: boolean

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      If set to True, the providers Delete method will not be called for this resource.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      transformations?: ResourceTransformation[]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Optional list of transformations to apply to this resource during construction. The transformations are applied in order, and are applied prior to transformation applied to parents walking from the resource up to the stack.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      transforms?: ResourceTransform[]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Optional list of transforms to apply to this resource during construction. The +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      transforms?: ResourceTransform[]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Optional list of transforms to apply to this resource during construction. The transforms are applied in order, and are applied prior to transforms applied to parents walking from the resource up to the stack.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      This property is experimental.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      urn?: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The URN of a previously-registered resource of this type to read from the engine.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      version?: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      An optional version, corresponding to the version of the provider plugin that should be used when operating on +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      urn?: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The URN of a previously-registered resource of this type to read from the engine.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      version?: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      An optional version, corresponding to the version of the provider plugin that should be used when operating on this resource. This version overrides the version information inferred from the current package and should rarely be used.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      diff --git a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/ResourceTransformArgs.html b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/ResourceTransformArgs.html index f00e26395c12..a0afa59b9dc8 100644 --- a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/ResourceTransformArgs.html +++ b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/ResourceTransformArgs.html @@ -1,12 +1,12 @@ -ResourceTransformArgs | @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Interface ResourceTransformArgs

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        ResourceTransformArgs is the argument bag passed to a resource transform.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        interface ResourceTransformArgs {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            custom: boolean;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            name: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            opts: ResourceOptions;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            props: Inputs;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            type: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        custom +ResourceTransformArgs | @pulumi/pulumi - v3.243.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        @pulumi/pulumi - v3.243.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Interface ResourceTransformArgs

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          ResourceTransformArgs is the argument bag passed to a resource transform.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          interface ResourceTransformArgs {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              custom: boolean;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              name: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              opts: ResourceOptions;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              props: Inputs;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              type: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          custom: boolean

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          True if the resource is a custom resource, false if it is a component resource.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          name: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The name of the resource.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The original resource options passed to the resource constructor.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          props: Inputs

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The original properties passed to the resource constructor.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          type: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The type of the resource.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          name: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The name of the resource.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The original resource options passed to the resource constructor.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          props: Inputs

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The original properties passed to the resource constructor.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          type: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The type of the resource.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          diff --git a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/ResourceTransformResult.html b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/ResourceTransformResult.html index f42958e1e466..14ae8f2165d4 100644 --- a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/ResourceTransformResult.html +++ b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/ResourceTransformResult.html @@ -1,9 +1,9 @@ -ResourceTransformResult | @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Interface ResourceTransformResult

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            ResourceTransformResult is the result that must be returned by a +ResourceTransformResult | @pulumi/pulumi - v3.243.0

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            @pulumi/pulumi - v3.243.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Interface ResourceTransformResult

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              ResourceTransformResult is the result that must be returned by a resource transform callback. It includes new values to use for the props and opts of the Resource in place of the originally provided values.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              interface ResourceTransformResult {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  opts: ResourceOptions;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  props: Inputs;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              interface ResourceTransformResult {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  opts: ResourceOptions;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  props: Inputs;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              The new resource options to use in place of the original opts

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              props: Inputs

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              The new properties to use in place of the original props

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              props: Inputs

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              The new properties to use in place of the original props

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              diff --git a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/ResourceTransformationArgs.html b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/ResourceTransformationArgs.html index dcce7ba8b862..2f6c969bc69c 100644 --- a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/ResourceTransformationArgs.html +++ b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/ResourceTransformationArgs.html @@ -1,13 +1,13 @@ -ResourceTransformationArgs | @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Interface ResourceTransformationArgs

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                ResourceTransformationArgs is the argument bag passed to a resource +ResourceTransformationArgs | @pulumi/pulumi - v3.243.0

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                @pulumi/pulumi - v3.243.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Interface ResourceTransformationArgs

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  ResourceTransformationArgs is the argument bag passed to a resource transformation.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  interface ResourceTransformationArgs {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      name: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      opts: ResourceOptions;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      props: Inputs;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      resource: Resource;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      type: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  interface ResourceTransformationArgs {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      name: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      opts: ResourceOptions;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      props: Inputs;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      resource: Resource;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      type: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  name: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The name of the resource.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The original resource options passed to the resource constructor.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  props: Inputs

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The original properties passed to the resource constructor.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  resource: Resource

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The Resource instance that is being transformed.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  type: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The type of the resource.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The original resource options passed to the resource constructor.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  props: Inputs

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The original properties passed to the resource constructor.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  resource: Resource

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The Resource instance that is being transformed.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  type: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The type of the resource.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  diff --git a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/ResourceTransformationResult.html b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/ResourceTransformationResult.html index 22b2619747ab..dd290494e474 100644 --- a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/ResourceTransformationResult.html +++ b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/ResourceTransformationResult.html @@ -1,9 +1,9 @@ -ResourceTransformationResult | @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Interface ResourceTransformationResult

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    ResourceTransformationResult is the result that must be returned by a +ResourceTransformationResult | @pulumi/pulumi - v3.243.0

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    @pulumi/pulumi - v3.243.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Interface ResourceTransformationResult

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      ResourceTransformationResult is the result that must be returned by a resource transformation callback. It includes new values to use for the props and opts of the Resource in place of the originally provided values.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      interface ResourceTransformationResult {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          opts: ResourceOptions;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          props: Inputs;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      interface ResourceTransformationResult {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          opts: ResourceOptions;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          props: Inputs;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The new resource options to use in place of the original opts

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      props: Inputs

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The new properties to use in place of the original props

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      props: Inputs

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The new properties to use in place of the original props

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      diff --git a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/StackReferenceArgs.html b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/StackReferenceArgs.html index 11c9bb240382..a738ac605d78 100644 --- a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/StackReferenceArgs.html +++ b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/StackReferenceArgs.html @@ -1,4 +1,4 @@ -StackReferenceArgs | @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Interface StackReferenceArgs

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        The set of arguments for constructing a StackReference resource.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        interface StackReferenceArgs {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            name?: Input<string>;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        name? +StackReferenceArgs | @pulumi/pulumi - v3.243.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        @pulumi/pulumi - v3.243.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Interface StackReferenceArgs

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The set of arguments for constructing a StackReference resource.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          interface StackReferenceArgs {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              name?: Input<string>;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          name?: Input<string>

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The name of the stack to reference.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          diff --git a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/StackReferenceOutputDetails.html b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/StackReferenceOutputDetails.html index b62f7e07965c..d9f5916bf362 100644 --- a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/StackReferenceOutputDetails.html +++ b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/StackReferenceOutputDetails.html @@ -1,9 +1,9 @@ -StackReferenceOutputDetails | @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Interface StackReferenceOutputDetails

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Records the output of a StackReference. Exactly one of value or +StackReferenceOutputDetails | @pulumi/pulumi - v3.243.0

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            @pulumi/pulumi - v3.243.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Interface StackReferenceOutputDetails

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Records the output of a StackReference. Exactly one of value or secretValue will be set.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              interface StackReferenceOutputDetails {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  secretValue?: any;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  value?: any;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              interface StackReferenceOutputDetails {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  secretValue?: any;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  value?: any;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              secretValue?: any

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              A secret value returned by the StackReference.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              This is null if the value is not a secret or it does not exist.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              value?: any

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              An output value returned by the StackReference.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              value?: any

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              An output value returned by the StackReference.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              This is null if the value is a secret or it does not exist.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              diff --git a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/StashArgs.html b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/StashArgs.html index 407ffd80c36a..814e51b72baa 100644 --- a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/StashArgs.html +++ b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/StashArgs.html @@ -1,4 +1,4 @@ -StashArgs | @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Interface StashArgs

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                The set of arguments for constructing a Stash resource.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                interface StashArgs {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    input: any;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                input +StashArgs | @pulumi/pulumi - v3.243.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                @pulumi/pulumi - v3.243.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Interface StashArgs

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The set of arguments for constructing a Stash resource.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  interface StashArgs {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      input: any;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  input: any

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The value to store in the stash resource.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  diff --git a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/StringConfigOptions.html b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/StringConfigOptions.html index a9e87bd82953..bfaa566ab692 100644 --- a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/StringConfigOptions.html +++ b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/StringConfigOptions.html @@ -1,10 +1,10 @@ -StringConfigOptions | @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Interface StringConfigOptions<K>

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    StringConfigOptions may be used to constrain the set of legal values a string config value may contain.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    interface StringConfigOptions<K extends string = string> {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        allowedValues?: K[];
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        maxLength?: number;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        minLength?: number;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        pattern?: string | RegExp;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Type Parameters

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • K extends string = string
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    allowedValues? +StringConfigOptions | @pulumi/pulumi - v3.243.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    @pulumi/pulumi - v3.243.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Interface StringConfigOptions<K>

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      StringConfigOptions may be used to constrain the set of legal values a string config value may contain.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      interface StringConfigOptions<K extends string = string> {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          allowedValues?: K[];
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          maxLength?: number;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          minLength?: number;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          pattern?: string | RegExp;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Type Parameters

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • K extends string = string
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      allowedValues?: K[]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The legal enum values. If it does not match, a ConfigEnumError is thrown.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      maxLength?: number

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The maximum string length. If the string is longer than this, a ConfigRangeError is thrown.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      minLength?: number

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The minimum string length. If the string is not this long, a ConfigRangeError is thrown.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      pattern?: string | RegExp

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      A regular expression the string must match. If it does not match, a ConfigPatternError is thrown.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      maxLength?: number

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The maximum string length. If the string is longer than this, a ConfigRangeError is thrown.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      minLength?: number

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The minimum string length. If the string is not this long, a ConfigRangeError is thrown.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      pattern?: string | RegExp

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      A regular expression the string must match. If it does not match, a ConfigPatternError is thrown.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      diff --git a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/automation.ConfigValue.html b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/automation.ConfigValue.html index 21c23d82fd85..6efe4940e19e 100644 --- a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/automation.ConfigValue.html +++ b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/automation.ConfigValue.html @@ -1,6 +1,6 @@ -ConfigValue | @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Interface ConfigValue

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        An input to/output from a pulumi config command.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        interface ConfigValue {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            secret?: boolean;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            value: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        secret? +ConfigValue | @pulumi/pulumi - v3.243.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        @pulumi/pulumi - v3.243.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Interface ConfigValue

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          An input to/output from a pulumi config command.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          interface ConfigValue {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              secret?: boolean;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              value: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          secret?: boolean

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          True if and only if this configuration value is a secret.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          value: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The underlying configuration value.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          value: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The underlying configuration value.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          diff --git a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/automation.Deployment.html b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/automation.Deployment.html index 72ecb06c83a2..94bafb201f5e 100644 --- a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/automation.Deployment.html +++ b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/automation.Deployment.html @@ -1,6 +1,6 @@ -Deployment | @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Interface Deployment

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Deployment encapsulates the state of a stack deployment.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            interface Deployment {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                deployment: any;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                version: number;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            deployment +Deployment | @pulumi/pulumi - v3.243.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            @pulumi/pulumi - v3.243.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Interface Deployment

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Deployment encapsulates the state of a stack deployment.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              interface Deployment {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  deployment: any;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  version: number;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              deployment: any

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              The pulumi deployment.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              version: number

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Version indicates the schema of the encoded deployment.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              version: number

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Version indicates the schema of the encoded deployment.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              diff --git a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/automation.DestroyOptions.html b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/automation.DestroyOptions.html index 9513ac83e0c2..4b9a5ed40fb3 100644 --- a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/automation.DestroyOptions.html +++ b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/automation.DestroyOptions.html @@ -1,5 +1,5 @@ -DestroyOptions | @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Interface DestroyOptions

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Options controlling the behavior of a Stack.destroy() operation.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                interface DestroyOptions {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    color?: "always" | "never" | "raw" | "auto";
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    configFile?: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    continueOnError?: boolean;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    debug?: boolean;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    diff?: boolean;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    exclude?: string[];
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    excludeDependents?: boolean;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    excludeProtected?: boolean;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    importFile?: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    logFlow?: boolean;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    logToStdErr?: boolean;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    logVerbosity?: number;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    message?: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    onError?: (err: string) => void;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    onEvent?: (event: EngineEvent) => void;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    onOutput?: (out: string) => void;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    parallel?: number;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    previewOnly?: boolean;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    refresh?: boolean;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    remove?: boolean;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    runProgram?: boolean;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    showSecrets?: boolean;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    signal?: AbortSignal;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    suppressOutputs?: boolean;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    suppressProgress?: boolean;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    target?: string[];
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    targetDependents?: boolean;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    tracing?: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    userAgent?: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Hierarchy (View Summary)

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                color? +DestroyOptions | @pulumi/pulumi - v3.243.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                @pulumi/pulumi - v3.243.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Interface DestroyOptions

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Options controlling the behavior of a Stack.destroy() operation.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  interface DestroyOptions {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      color?: "always" | "never" | "raw" | "auto";
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      configFile?: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      continueOnError?: boolean;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      debug?: boolean;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      diff?: boolean;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      exclude?: string[];
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      excludeDependents?: boolean;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      excludeProtected?: boolean;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      importFile?: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      logFlow?: boolean;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      logToStdErr?: boolean;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      logVerbosity?: number;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      message?: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      onError?: (err: string) => void;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      onEvent?: (event: EngineEvent) => void;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      onOutput?: (out: string) => void;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      parallel?: number;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      previewOnly?: boolean;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      refresh?: boolean;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      remove?: boolean;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      runProgram?: boolean;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      showSecrets?: boolean;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      signal?: AbortSignal;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      suppressOutputs?: boolean;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      suppressProgress?: boolean;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      target?: string[];
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      targetDependents?: boolean;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      tracing?: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      userAgent?: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Hierarchy (View Summary)

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  color?: "always" | "never" | "raw" | "auto"

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Colorize output.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  configFile?: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Use the configuration values in the specified file rather than detecting the file name.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  continueOnError?: boolean

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Continue the operation to completion even if errors occur.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  debug?: boolean

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Print detailed debugging output during resource operations.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  diff?: boolean

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Display the operation as a rich diff showing the overall change.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  exclude?: string[]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Specify a set of resource URNs to exclude from operations.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  excludeDependents?: boolean

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Exclude dependents of targets specified with exclude.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  excludeProtected?: boolean

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Do not destroy protected resources.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  importFile?: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Save any creates seen during the preview into an import file to use with pulumi import.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  logFlow?: boolean

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Flow log settings to child processes (like plugins)

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  logToStdErr?: boolean

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Log to stderr instead of to files.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  logVerbosity?: number

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Enable verbose logging (e.g., v=3); anything >3 is very verbose.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  message?: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Optional message to associate with the operation.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  onError?: (err: string) => void

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  A callback to be executed when the operation produces stderr output.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  onEvent?: (event: EngineEvent) => void

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  A callback to be executed when the operation yields an event.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  onOutput?: (out: string) => void

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  A callback to be executed when the operation produces stdout output.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  parallel?: number

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Allow P resource operations to run in parallel at once (1 for no parallelism).

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  previewOnly?: boolean

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Only show a preview of the destroy, but don't perform the destroy itself.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  configFile?: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Use the configuration values in the specified file rather than detecting the file name.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  continueOnError?: boolean

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Continue the operation to completion even if errors occur.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  debug?: boolean

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Print detailed debugging output during resource operations.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  diff?: boolean

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Display the operation as a rich diff showing the overall change.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  exclude?: string[]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Specify a set of resource URNs to exclude from operations.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  excludeDependents?: boolean

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Exclude dependents of targets specified with exclude.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  excludeProtected?: boolean

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Do not destroy protected resources.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  importFile?: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Save any creates seen during the preview into an import file to use with pulumi import.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  logFlow?: boolean

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Flow log settings to child processes (like plugins)

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  logToStdErr?: boolean

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Log to stderr instead of to files.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  logVerbosity?: number

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Enable verbose logging (e.g., v=3); anything >3 is very verbose.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  message?: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Optional message to associate with the operation.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  onError?: (err: string) => void

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  A callback to be executed when the operation produces stderr output.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  onEvent?: (event: EngineEvent) => void

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  A callback to be executed when the operation yields an event.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  onOutput?: (out: string) => void

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  A callback to be executed when the operation produces stdout output.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  parallel?: number

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Allow P resource operations to run in parallel at once (1 for no parallelism).

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  previewOnly?: boolean

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Only show a preview of the destroy, but don't perform the destroy itself.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Use previewDestroy instead.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  refresh?: boolean

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Refresh the state of the stack's resources against the cloud provider before running destroy.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  remove?: boolean

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Remove the stack and its configuration after all resources in the stack have been deleted.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  runProgram?: boolean

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Run the program in the workspace to perform the destroy.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  showSecrets?: boolean

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Include secrets in the operation summary.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  signal?: AbortSignal

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  A signal to abort an ongoing operation.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  suppressOutputs?: boolean

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Suppress display of stack outputs (in case they contain sensitive values).

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  suppressProgress?: boolean

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Suppress display of periodic progress dots.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  target?: string[]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Specify a set of resource URNs to operate on. Other resources will not be updated.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  targetDependents?: boolean

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Operate on dependent targets discovered but not specified in targets.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  tracing?: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Emit tracing to the specified endpoint. Use the file: scheme to write tracing data to a local files.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  userAgent?: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  A custom user agent to use when executing the operation.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  refresh?: boolean

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Refresh the state of the stack's resources against the cloud provider before running destroy.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  remove?: boolean

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Remove the stack and its configuration after all resources in the stack have been deleted.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  runProgram?: boolean

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Run the program in the workspace to perform the destroy.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  showSecrets?: boolean

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Include secrets in the operation summary.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  signal?: AbortSignal

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  A signal to abort an ongoing operation.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  suppressOutputs?: boolean

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Suppress display of stack outputs (in case they contain sensitive values).

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  suppressProgress?: boolean

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Suppress display of periodic progress dots.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  target?: string[]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Specify a set of resource URNs to operate on. Other resources will not be updated.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  targetDependents?: boolean

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Operate on dependent targets discovered but not specified in targets.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  tracing?: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Emit tracing to the specified endpoint. Use the file: scheme to write tracing data to a local files.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  userAgent?: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  A custom user agent to use when executing the operation.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  diff --git a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/automation.DestroyResult.html b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/automation.DestroyResult.html index d7a3b3001e8b..4473f6c0895d 100644 --- a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/automation.DestroyResult.html +++ b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/automation.DestroyResult.html @@ -1,8 +1,8 @@ -DestroyResult | @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Interface DestroyResult

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Output from destroying all resources in a Stack.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    interface DestroyResult {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        stderr: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        stdout: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        summary: UpdateSummary;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    stderr +DestroyResult | @pulumi/pulumi - v3.243.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    @pulumi/pulumi - v3.243.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Interface DestroyResult

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Output from destroying all resources in a Stack.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      interface DestroyResult {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          stderr: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          stdout: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          summary: UpdateSummary;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      stderr: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The standard error output from the destroy.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      stdout: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The standard output from the destroy.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      summary: UpdateSummary

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      A summary of the destroy.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      stdout: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The standard output from the destroy.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      summary: UpdateSummary

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      A summary of the destroy.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      diff --git a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/automation.DiagnosticEvent.html b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/automation.DiagnosticEvent.html index 69784b6d701d..46c7bebe2aa1 100644 --- a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/automation.DiagnosticEvent.html +++ b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/automation.DiagnosticEvent.html @@ -1,10 +1,10 @@ -DiagnosticEvent | @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Interface DiagnosticEvent

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        An event emitted whenever a diagnostic message is provided, for example errors from +DiagnosticEvent | @pulumi/pulumi - v3.243.0

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        @pulumi/pulumi - v3.243.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Interface DiagnosticEvent

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          An event emitted whenever a diagnostic message is provided, for example errors from a cloud resource provider while trying to create or update a resource.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          interface DiagnosticEvent {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              color: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              ephemeral?: boolean;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              message: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              prefix?: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              severity: "info" | "info#err" | "warning" | "error";
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              streamID?: number;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              urn?: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          interface DiagnosticEvent {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              color: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              ephemeral?: boolean;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              message: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              prefix?: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              severity: "info" | "info#err" | "warning" | "error";
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              streamID?: number;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              urn?: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          color: string
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          ephemeral?: boolean
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          message: string
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          prefix?: string
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          severity: "info" | "info#err" | "warning" | "error"
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          streamID?: number
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          urn?: string
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          color: string
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          ephemeral?: boolean
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          message: string
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          prefix?: string
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          severity: "info" | "info#err" | "warning" | "error"
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          streamID?: number
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          urn?: string
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          diff --git a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/automation.DockerImageCredentials.html b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/automation.DockerImageCredentials.html index bbe8ca05c978..d81c26da4cf3 100644 --- a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/automation.DockerImageCredentials.html +++ b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/automation.DockerImageCredentials.html @@ -1,4 +1,4 @@ -DockerImageCredentials | @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Interface DockerImageCredentials

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Credentials for the remote execution Docker image.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            interface DockerImageCredentials {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                password: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                username: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            password +DockerImageCredentials | @pulumi/pulumi - v3.243.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            @pulumi/pulumi - v3.243.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Interface DockerImageCredentials

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Credentials for the remote execution Docker image.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              interface DockerImageCredentials {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  password: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  username: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              password: string
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              username: string
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              password: string
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              username: string
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              diff --git a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/automation.EngineEvent.html b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/automation.EngineEvent.html index ff81a8e93050..bc28e33493d3 100644 --- a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/automation.EngineEvent.html +++ b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/automation.EngineEvent.html @@ -1,7 +1,7 @@ -EngineEvent | @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Interface EngineEvent

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                A Pulumi engine event, such as a change to a resource or diagnostic message. +EngineEvent | @pulumi/pulumi - v3.243.0

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                @pulumi/pulumi - v3.243.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Interface EngineEvent

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  A Pulumi engine event, such as a change to a resource or diagnostic message. This is intended to capture a discriminated union -- exactly one event field will be non-nil.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  cancelEvent?: CancelEvent

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  A cancellation event, if this engine event represents a cancellation.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  diagnosticEvent?: DiagnosticEvent

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  A diagnostic event, if this engine event represents a diagnostic message.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  policyEvent?: PolicyEvent

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  A policy event, if this engine event represents a policy violation.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  preludeEvent?: PreludeEvent

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  A prelude event, if this engine event represents the start of an +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  diagnosticEvent?: DiagnosticEvent

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  A diagnostic event, if this engine event represents a diagnostic message.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  policyEvent?: PolicyEvent

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  A policy event, if this engine event represents a policy violation.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  preludeEvent?: PreludeEvent

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  A prelude event, if this engine event represents the start of an operation.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  resOpFailedEvent?: ResOpFailedEvent

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  A resource operation failed event, if this engine event represents a resource +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  resOpFailedEvent?: ResOpFailedEvent

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  A resource operation failed event, if this engine event represents a resource operation that failed.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  resourcePreEvent?: ResourcePreEvent

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  A resource pre-event, if this engine event represents a resource +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  resourcePreEvent?: ResourcePreEvent

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  A resource pre-event, if this engine event represents a resource about to be modified.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  resOutputsEvent?: ResOutputsEvent

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  A resource outputs event, if this engine event represents a resource +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  resOutputsEvent?: ResOutputsEvent

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  A resource outputs event, if this engine event represents a resource that has been modified.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  sequence: number

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  A unique, and monotonically increasing number for each engine event sent +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  sequence: number

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  A unique, and monotonically increasing number for each engine event sent to the Pulumi Service. Since events may be sent concurrently, and/or delayed via network routing, the sequence number is to ensure events can be placed into a total ordering.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  @@ -33,8 +33,8 @@
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • Events with a lower sequence number must have been emitted before those with a higher sequence number.
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  startDebuggingEvent?: StartDebuggingEvent

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  A debugging event, if the engine event represents a debugging message.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  stdoutEvent?: StdoutEngineEvent

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  A stdout event, if this engine event represents a message written to stdout.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  summaryEvent?: SummaryEvent

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  A summary event, if this engine event represents the end of an operation.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  timestamp: number

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Timestamp is a Unix timestamp (seconds) of when the event was emitted.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  startDebuggingEvent?: StartDebuggingEvent

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  A debugging event, if the engine event represents a debugging message.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  stdoutEvent?: StdoutEngineEvent

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  A stdout event, if this engine event represents a message written to stdout.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  summaryEvent?: SummaryEvent

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  A summary event, if this engine event represents the end of an operation.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  timestamp: number

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Timestamp is a Unix timestamp (seconds) of when the event was emitted.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  diff --git a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/automation.ExecutorImage.html b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/automation.ExecutorImage.html index fc507f19b5ce..0f65c4d9fd01 100644 --- a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/automation.ExecutorImage.html +++ b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/automation.ExecutorImage.html @@ -1,4 +1,4 @@ -ExecutorImage | @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Interface ExecutorImage

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Information about the remote execution image.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    interface ExecutorImage {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        credentials?: DockerImageCredentials;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        image: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    credentials? +ExecutorImage | @pulumi/pulumi - v3.243.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    @pulumi/pulumi - v3.243.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Interface ExecutorImage

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Information about the remote execution image.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      interface ExecutorImage {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          credentials?: DockerImageCredentials;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          image: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      image: string
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      image: string
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      diff --git a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/automation.GlobalOpts.html b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/automation.GlobalOpts.html index a31bdf1599a4..f218d907f12c 100644 --- a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/automation.GlobalOpts.html +++ b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/automation.GlobalOpts.html @@ -1,4 +1,4 @@ -GlobalOpts | @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Interface GlobalOpts

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        interface GlobalOpts {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            color?: "always" | "never" | "raw" | "auto";
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            configFile?: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            debug?: boolean;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            importFile?: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            logFlow?: boolean;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            logToStdErr?: boolean;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            logVerbosity?: number;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            suppressOutputs?: boolean;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            suppressProgress?: boolean;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            tracing?: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Hierarchy (View Summary)

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        color? +GlobalOpts | @pulumi/pulumi - v3.243.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        @pulumi/pulumi - v3.243.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Interface GlobalOpts

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          interface GlobalOpts {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              color?: "always" | "never" | "raw" | "auto";
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              configFile?: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              debug?: boolean;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              importFile?: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              logFlow?: boolean;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              logToStdErr?: boolean;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              logVerbosity?: number;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              suppressOutputs?: boolean;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              suppressProgress?: boolean;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              tracing?: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Hierarchy (View Summary)

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          color?: "always" | "never" | "raw" | "auto"

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Colorize output.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          configFile?: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Use the configuration values in the specified file rather than detecting the file name.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          debug?: boolean

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Print detailed debugging output during resource operations.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          importFile?: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Save any creates seen during the preview into an import file to use with pulumi import.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          logFlow?: boolean

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Flow log settings to child processes (like plugins)

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          logToStdErr?: boolean

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Log to stderr instead of to files.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          logVerbosity?: number

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Enable verbose logging (e.g., v=3); anything >3 is very verbose.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          suppressOutputs?: boolean

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Suppress display of stack outputs (in case they contain sensitive values).

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          suppressProgress?: boolean

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Suppress display of periodic progress dots.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          tracing?: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Emit tracing to the specified endpoint. Use the file: scheme to write tracing data to a local files.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          configFile?: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Use the configuration values in the specified file rather than detecting the file name.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          debug?: boolean

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Print detailed debugging output during resource operations.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          importFile?: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Save any creates seen during the preview into an import file to use with pulumi import.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          logFlow?: boolean

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Flow log settings to child processes (like plugins)

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          logToStdErr?: boolean

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Log to stderr instead of to files.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          logVerbosity?: number

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Enable verbose logging (e.g., v=3); anything >3 is very verbose.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          suppressOutputs?: boolean

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Suppress display of stack outputs (in case they contain sensitive values).

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          suppressProgress?: boolean

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Suppress display of periodic progress dots.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          tracing?: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Emit tracing to the specified endpoint. Use the file: scheme to write tracing data to a local files.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          diff --git a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/automation.ImportOptions.html b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/automation.ImportOptions.html index 5e87e0c58dbe..09a11705229b 100644 --- a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/automation.ImportOptions.html +++ b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/automation.ImportOptions.html @@ -1,5 +1,5 @@ -ImportOptions | @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Interface ImportOptions

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Options controlling the behavior of a Stack.import() operation.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            interface ImportOptions {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                color?: "always" | "never" | "raw" | "auto";
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                configFile?: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                converter?: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                converterArgs?: string[];
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                debug?: boolean;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                generateCode?: boolean;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                importFile?: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                logFlow?: boolean;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                logToStdErr?: boolean;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                logVerbosity?: number;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                message?: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                nameTable?: { [key: string]: string };
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                onOutput?: (out: string) => void;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                protect?: boolean;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                resources?: ImportResource[];
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                showSecrets?: boolean;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                suppressOutputs?: boolean;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                suppressProgress?: boolean;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                tracing?: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Hierarchy (View Summary)

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            color? +ImportOptions | @pulumi/pulumi - v3.243.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            @pulumi/pulumi - v3.243.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Interface ImportOptions

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Options controlling the behavior of a Stack.import() operation.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              interface ImportOptions {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  color?: "always" | "never" | "raw" | "auto";
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  configFile?: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  converter?: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  converterArgs?: string[];
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  debug?: boolean;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  generateCode?: boolean;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  importFile?: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  logFlow?: boolean;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  logToStdErr?: boolean;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  logVerbosity?: number;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  message?: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  nameTable?: { [key: string]: string };
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  onOutput?: (out: string) => void;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  protect?: boolean;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  resources?: ImportResource[];
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  showSecrets?: boolean;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  suppressOutputs?: boolean;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  suppressProgress?: boolean;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  tracing?: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Hierarchy (View Summary)

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              color?: "always" | "never" | "raw" | "auto"

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Colorize output.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              configFile?: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Use the configuration values in the specified file rather than detecting the file name.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              converter?: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Specify the name of a converter to import resources from.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              converterArgs?: string[]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Additional arguments to pass to the converter, if the user specified one.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              debug?: boolean

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Print detailed debugging output during resource operations.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              generateCode?: boolean

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Generate resource declaration code for the imported resources. Set to true by default.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              importFile?: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Save any creates seen during the preview into an import file to use with pulumi import.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              logFlow?: boolean

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Flow log settings to child processes (like plugins)

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              logToStdErr?: boolean

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Log to stderr instead of to files.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              logVerbosity?: number

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Enable verbose logging (e.g., v=3); anything >3 is very verbose.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              message?: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Optional message to associate with the import operation

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              nameTable?: { [key: string]: string }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              The name table maps language names to parent and provider URNs. These names are +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              configFile?: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Use the configuration values in the specified file rather than detecting the file name.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              converter?: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Specify the name of a converter to import resources from.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              converterArgs?: string[]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Additional arguments to pass to the converter, if the user specified one.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              debug?: boolean

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Print detailed debugging output during resource operations.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              generateCode?: boolean

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Generate resource declaration code for the imported resources. Set to true by default.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              importFile?: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Save any creates seen during the preview into an import file to use with pulumi import.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              logFlow?: boolean

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Flow log settings to child processes (like plugins)

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              logToStdErr?: boolean

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Log to stderr instead of to files.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              logVerbosity?: number

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Enable verbose logging (e.g., v=3); anything >3 is very verbose.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              message?: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Optional message to associate with the import operation

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              nameTable?: { [key: string]: string }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              The name table maps language names to parent and provider URNs. These names are used in the generated definitions, and should match the corresponding declarations in the source program. This table is required if any parents or providers are specified by the resources to import.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              onOutput?: (out: string) => void
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              protect?: boolean

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Allow resources to be imported with protection from deletion enabled. Set to true by default.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              resources?: ImportResource[]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              The resource definitions to import into the stack

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              showSecrets?: boolean

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Include secrets in the import result summary

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              suppressOutputs?: boolean

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Suppress display of stack outputs (in case they contain sensitive values).

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              suppressProgress?: boolean

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Suppress display of periodic progress dots.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              tracing?: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Emit tracing to the specified endpoint. Use the file: scheme to write tracing data to a local files.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              onOutput?: (out: string) => void
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              protect?: boolean

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Allow resources to be imported with protection from deletion enabled. Set to true by default.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              resources?: ImportResource[]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              The resource definitions to import into the stack

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              showSecrets?: boolean

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Include secrets in the import result summary

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              suppressOutputs?: boolean

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Suppress display of stack outputs (in case they contain sensitive values).

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              suppressProgress?: boolean

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Suppress display of periodic progress dots.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              tracing?: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Emit tracing to the specified endpoint. Use the file: scheme to write tracing data to a local files.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              diff --git a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/automation.ImportResource.html b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/automation.ImportResource.html index 0b66b2300524..aa0bae82643e 100644 --- a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/automation.ImportResource.html +++ b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/automation.ImportResource.html @@ -1,4 +1,4 @@ -ImportResource | @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Interface ImportResource

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                interface ImportResource {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    component?: boolean;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    id?: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    logicalName?: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    name: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    parent?: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    pluginDownloadUrl?: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    properties?: string[];
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    provider?: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    remote?: boolean;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    type: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    version?: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                component? +ImportResource | @pulumi/pulumi - v3.243.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                @pulumi/pulumi - v3.243.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Interface ImportResource

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  interface ImportResource {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      component?: boolean;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      id?: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      logicalName?: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      name: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      parent?: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      pluginDownloadUrl?: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      properties?: string[];
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      provider?: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      remote?: boolean;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      type: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      version?: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  component?: boolean
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  id?: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The ID of the resource to import. The format of the ID is specific to the resource type.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  logicalName?: string
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  name: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The name of the resource to import

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  parent?: string
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  pluginDownloadUrl?: string
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  properties?: string[]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  provider?: string
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  remote?: boolean
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  type: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The type of the resource to import

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  version?: string
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  component?: boolean
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  id?: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The ID of the resource to import. The format of the ID is specific to the resource type.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  logicalName?: string
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  name: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The name of the resource to import

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  parent?: string
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  pluginDownloadUrl?: string
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  properties?: string[]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  provider?: string
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  remote?: boolean
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  type: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The type of the resource to import

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  version?: string
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  diff --git a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/automation.ImportResult.html b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/automation.ImportResult.html index a5e3fc7e4936..d9a82f346921 100644 --- a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/automation.ImportResult.html +++ b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/automation.ImportResult.html @@ -1,6 +1,6 @@ -ImportResult | @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Interface ImportResult

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    The output from performing an import operation.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    interface ImportResult {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        generatedCode: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        stderr: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        stdout: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        summary: UpdateSummary;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    generatedCode +ImportResult | @pulumi/pulumi - v3.243.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    @pulumi/pulumi - v3.243.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Interface ImportResult

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The output from performing an import operation.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      interface ImportResult {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          generatedCode: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          stderr: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          stdout: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          summary: UpdateSummary;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      generatedCode: string
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      stderr: string
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      stdout: string
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      summary: UpdateSummary
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      generatedCode: string
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      stderr: string
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      stdout: string
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      summary: UpdateSummary
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      diff --git a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/automation.InlineProgramArgs.html b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/automation.InlineProgramArgs.html index 72df966eda86..6d9a0e8bb082 100644 --- a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/automation.InlineProgramArgs.html +++ b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/automation.InlineProgramArgs.html @@ -1,8 +1,8 @@ -InlineProgramArgs | @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Interface InlineProgramArgs

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Description of a stack backed by an inline (in process) Pulumi program.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        interface InlineProgramArgs {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            program: PulumiFn;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            projectName: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            stackName: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        program +InlineProgramArgs | @pulumi/pulumi - v3.243.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        @pulumi/pulumi - v3.243.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Interface InlineProgramArgs

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Description of a stack backed by an inline (in process) Pulumi program.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          interface InlineProgramArgs {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              program: PulumiFn;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              projectName: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              stackName: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          program: PulumiFn

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The inline (in-process) Pulumi program to use with update and preview operations.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          projectName: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The associated project name.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          stackName: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The associated stack name.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          projectName: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The associated project name.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          stackName: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The associated stack name.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          diff --git a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/automation.InstallOptions.html b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/automation.InstallOptions.html index c02aee107648..c8014db9c17f 100644 --- a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/automation.InstallOptions.html +++ b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/automation.InstallOptions.html @@ -1,12 +1,12 @@ -InstallOptions | @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Interface InstallOptions

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            interface InstallOptions {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                noDependencies?: boolean;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                noPlugins?: boolean;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                reinstall?: boolean;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                useLanguageVersionTools?: boolean;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            noDependencies? +InstallOptions | @pulumi/pulumi - v3.243.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            @pulumi/pulumi - v3.243.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Interface InstallOptions

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              interface InstallOptions {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  noDependencies?: boolean;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  noPlugins?: boolean;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  reinstall?: boolean;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  useLanguageVersionTools?: boolean;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              noDependencies?: boolean

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Skip installing dependencies

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              noPlugins?: boolean

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Skip installing plugins

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              reinstall?: boolean

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Reinstall plugins even if they already exist

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              useLanguageVersionTools?: boolean

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Use language version tools to setup the language runtime before installing the dependencies. +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              noPlugins?: boolean

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Skip installing plugins

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              reinstall?: boolean

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Reinstall plugins even if they already exist

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              useLanguageVersionTools?: boolean

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Use language version tools to setup the language runtime before installing the dependencies. For Python this will use pyenv to install the Python version specified in a .python-version file. For Nodejs this will use fnm to install the Node.js version specified in a .nvmrc or `.node-version file.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              diff --git a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/automation.ListOptions.html b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/automation.ListOptions.html index 559da4972863..6cbaf2b705bd 100644 --- a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/automation.ListOptions.html +++ b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/automation.ListOptions.html @@ -1,3 +1,3 @@ -ListOptions | @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Interface ListOptions

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                interface ListOptions {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    all?: boolean;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                all? +ListOptions | @pulumi/pulumi - v3.243.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                @pulumi/pulumi - v3.243.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Interface ListOptions

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  interface ListOptions {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      all?: boolean;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  all?: boolean

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  List all stacks instead of just stacks for the current project

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  diff --git a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/automation.LocalProgramArgs.html b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/automation.LocalProgramArgs.html index b13029262e8f..02f19bb2413d 100644 --- a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/automation.LocalProgramArgs.html +++ b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/automation.LocalProgramArgs.html @@ -1,6 +1,6 @@ -LocalProgramArgs | @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Interface LocalProgramArgs

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Description of a stack backed by pre-existing local Pulumi CLI program.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    interface LocalProgramArgs {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        stackName: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        workDir: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    stackName +LocalProgramArgs | @pulumi/pulumi - v3.243.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    @pulumi/pulumi - v3.243.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Interface LocalProgramArgs

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Description of a stack backed by pre-existing local Pulumi CLI program.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      interface LocalProgramArgs {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          stackName: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          workDir: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      stackName: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The associated stack name.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      workDir: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The working directory of the program.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      workDir: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The working directory of the program.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      diff --git a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/automation.LocalWorkspaceOptions.html b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/automation.LocalWorkspaceOptions.html index b422b93bc9af..e3475d938bfd 100644 --- a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/automation.LocalWorkspaceOptions.html +++ b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/automation.LocalWorkspaceOptions.html @@ -1,6 +1,6 @@ -LocalWorkspaceOptions | @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Interface LocalWorkspaceOptions

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Extensibility options to configure a ; e.g: settings to +LocalWorkspaceOptions | @pulumi/pulumi - v3.243.0

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        @pulumi/pulumi - v3.243.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Interface LocalWorkspaceOptions

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Extensibility options to configure a ; e.g: settings to seed and environment variables to pass through to every command.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          interface LocalWorkspaceOptions {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              envVars?: { [key: string]: string };
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              program?: PulumiFn;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              projectSettings?: ProjectSettings;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              pulumiCommand?: PulumiCommand;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              pulumiHome?: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              remoteExecutorImage?: ExecutorImage;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              secretsProvider?: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              stackSettings?: { [key: string]: StackSettings };
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              workDir?: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          interface LocalWorkspaceOptions {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              envVars?: { [key: string]: string };
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              program?: PulumiFn;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              projectSettings?: ProjectSettings;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              pulumiCommand?: PulumiCommand;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              pulumiHome?: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              remoteExecutorImage?: ExecutorImage;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              secretsProvider?: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              stackSettings?: { [key: string]: StackSettings };
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              workDir?: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          envVars?: { [key: string]: string }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Environment values scoped to the current workspace. These will be supplied to every Pulumi command.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          program?: PulumiFn

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The inline program PulumiFn to be used for preview/update +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          program?: PulumiFn

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The inline program PulumiFn to be used for preview/update operations, if any. If none is specified, the stack will refer to ProjectSettings for this information.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          projectSettings?: ProjectSettings

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The settings object for the current project.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          pulumiCommand?: PulumiCommand

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The underlying Pulumi CLI.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          pulumiHome?: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The directory to override for CLI metadata

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          remoteExecutorImage?: ExecutorImage

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The image to use for the remote Pulumi operation.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          secretsProvider?: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The secrets provider to use for encryption and decryption of stack secrets. +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          projectSettings?: ProjectSettings

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The settings object for the current project.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          pulumiCommand?: PulumiCommand

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The underlying Pulumi CLI.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          pulumiHome?: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The directory to override for CLI metadata

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          remoteExecutorImage?: ExecutorImage

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The image to use for the remote Pulumi operation.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          secretsProvider?: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The secrets provider to use for encryption and decryption of stack secrets. See: https://www.pulumi.com/docs/intro/concepts/secrets/#available-encryption-providers

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          stackSettings?: { [key: string]: StackSettings }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          A map of stack names and corresponding settings objects.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          workDir?: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The directory to run Pulumi commands and read settings (Pulumi.yaml and +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          stackSettings?: { [key: string]: StackSettings }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          A map of stack names and corresponding settings objects.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          workDir?: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The directory to run Pulumi commands and read settings (Pulumi.yaml and Pulumi.<stack>.yaml).

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          diff --git a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/automation.OutputValue.html b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/automation.OutputValue.html index da502c0f045f..430e912a4103 100644 --- a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/automation.OutputValue.html +++ b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/automation.OutputValue.html @@ -1,6 +1,6 @@ -OutputValue | @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Interface OutputValue

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            An output produced by a Pulumi program as part of a stack operation.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            interface OutputValue {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                secret: boolean;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                value: any;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            secret +OutputValue | @pulumi/pulumi - v3.243.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            @pulumi/pulumi - v3.243.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Interface OutputValue

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              An output produced by a Pulumi program as part of a stack operation.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              interface OutputValue {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  secret: boolean;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  value: any;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              secret: boolean

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              True if and only if the value represents a secret.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              value: any

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              The underlying output value.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              value: any

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              The underlying output value.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              diff --git a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/automation.PluginInfo.html b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/automation.PluginInfo.html index 08d550066b61..06f0119bc9e2 100644 --- a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/automation.PluginInfo.html +++ b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/automation.PluginInfo.html @@ -1,4 +1,4 @@ -PluginInfo | @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Interface PluginInfo

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                interface PluginInfo {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    installTime: Date;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    kind: PluginKind;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    lastUsedTime: Date;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    name: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    path: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    serverURL: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    size: number;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    version?: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                installTime +PluginInfo | @pulumi/pulumi - v3.243.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                @pulumi/pulumi - v3.243.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Interface PluginInfo

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  interface PluginInfo {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      installTime: Date;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      kind: PluginKind;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      lastUsedTime: Date;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      name: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      path: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      serverURL: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      size: number;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      version?: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  installTime: Date
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  lastUsedTime: Date
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  name: string
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  path: string
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  serverURL: string
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  size: number
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  version?: string
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  installTime: Date
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  lastUsedTime: Date
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  name: string
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  path: string
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  serverURL: string
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  size: number
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  version?: string
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  diff --git a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/automation.PolicyEvent.html b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/automation.PolicyEvent.html index 60d9e51b7514..be1c3ddc5c2d 100644 --- a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/automation.PolicyEvent.html +++ b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/automation.PolicyEvent.html @@ -1,5 +1,5 @@ -PolicyEvent | @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Interface PolicyEvent

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    An event emitted whenever there is a policy violation.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    interface PolicyEvent {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        color: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        enforcementLevel: "warning" | "mandatory";
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        message: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        policyName: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        policyPackName: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        policyPackVersion: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        policyPackVersionTag: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        resourceUrn?: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    color +PolicyEvent | @pulumi/pulumi - v3.243.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    @pulumi/pulumi - v3.243.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Interface PolicyEvent

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      An event emitted whenever there is a policy violation.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      interface PolicyEvent {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          color: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          enforcementLevel: "warning" | "mandatory";
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          message: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          policyName: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          policyPackName: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          policyPackVersion: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          policyPackVersionTag: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          resourceUrn?: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      color: string
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      enforcementLevel: "warning" | "mandatory"
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      message: string
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      policyName: string
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      policyPackName: string
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      policyPackVersion: string
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      policyPackVersionTag: string
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      resourceUrn?: string
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      color: string
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      enforcementLevel: "warning" | "mandatory"
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      message: string
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      policyName: string
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      policyPackName: string
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      policyPackVersion: string
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      policyPackVersionTag: string
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      resourceUrn?: string
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      diff --git a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/automation.PreludeEvent.html b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/automation.PreludeEvent.html index 4590a1543a2f..90251b10b691 100644 --- a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/automation.PreludeEvent.html +++ b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/automation.PreludeEvent.html @@ -1,4 +1,4 @@ -PreludeEvent | @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Interface PreludeEvent

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        An event emitted at the start of an update.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        interface PreludeEvent {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            config: Record<string, string>;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        config +PreludeEvent | @pulumi/pulumi - v3.243.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        @pulumi/pulumi - v3.243.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Interface PreludeEvent

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          An event emitted at the start of an update.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          interface PreludeEvent {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              config: Record<string, string>;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          config: Record<string, string>

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Configuration values that will be used during the update.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          diff --git a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/automation.PreviewOptions.html b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/automation.PreviewOptions.html index 7358d22e7583..ebb524d99dfc 100644 --- a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/automation.PreviewOptions.html +++ b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/automation.PreviewOptions.html @@ -1,5 +1,5 @@ -PreviewOptions | @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Interface PreviewOptions

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Options controlling the behavior of a Stack.preview() operation.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            interface PreviewOptions {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                attachDebugger?: boolean;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                color?: "always" | "never" | "raw" | "auto";
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                configFile?: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                debug?: boolean;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                diff?: boolean;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                exclude?: string[];
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                excludeDependents?: boolean;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                expectNoChanges?: boolean;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                importFile?: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                logFlow?: boolean;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                logToStdErr?: boolean;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                logVerbosity?: number;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                message?: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                onError?: (err: string) => void;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                onEvent?: (event: EngineEvent) => void;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                onOutput?: (out: string) => void;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                parallel?: number;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                plan?: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                policyPackConfigs?: string[];
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                policyPacks?: string[];
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                program?: PulumiFn;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                refresh?: boolean;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                replace?: string[];
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                runProgram?: boolean;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                signal?: AbortSignal;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                suppressOutputs?: boolean;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                suppressProgress?: boolean;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                target?: string[];
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                targetDependents?: boolean;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                tracing?: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                userAgent?: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Hierarchy (View Summary)

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            attachDebugger? +PreviewOptions | @pulumi/pulumi - v3.243.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            @pulumi/pulumi - v3.243.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Interface PreviewOptions

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Options controlling the behavior of a Stack.preview() operation.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              interface PreviewOptions {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  attachDebugger?: boolean;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  color?: "always" | "never" | "raw" | "auto";
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  configFile?: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  debug?: boolean;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  diff?: boolean;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  exclude?: string[];
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  excludeDependents?: boolean;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  expectNoChanges?: boolean;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  importFile?: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  logFlow?: boolean;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  logToStdErr?: boolean;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  logVerbosity?: number;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  message?: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  onError?: (err: string) => void;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  onEvent?: (event: EngineEvent) => void;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  onOutput?: (out: string) => void;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  parallel?: number;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  plan?: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  policyPackConfigs?: string[];
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  policyPacks?: string[];
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  program?: PulumiFn;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  refresh?: boolean;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  replace?: string[];
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  runProgram?: boolean;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  signal?: AbortSignal;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  suppressOutputs?: boolean;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  suppressProgress?: boolean;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  target?: string[];
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  targetDependents?: boolean;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  tracing?: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  userAgent?: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Hierarchy (View Summary)

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              attachDebugger?: boolean

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Run the process under a debugger, and pause until a debugger is attached.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              color?: "always" | "never" | "raw" | "auto"

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Colorize output.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              configFile?: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Use the configuration values in the specified file rather than detecting the file name.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              debug?: boolean

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Print detailed debugging output during resource operations.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              diff?: boolean

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Display the operation as a rich diff showing the overall change.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              exclude?: string[]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Specify a set of resource URNs to exclude from operations.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              excludeDependents?: boolean

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Exclude dependents of targets specified with exclude.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              expectNoChanges?: boolean

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Return an error if any changes occur during this operation.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              importFile?: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Save any creates seen during the preview into an import file to use with pulumi import.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              logFlow?: boolean

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Flow log settings to child processes (like plugins)

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              logToStdErr?: boolean

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Log to stderr instead of to files.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              logVerbosity?: number

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Enable verbose logging (e.g., v=3); anything >3 is very verbose.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              message?: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Optional message to associate with the operation.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              onError?: (err: string) => void

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              A callback to be executed when the operation produces stderr output.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              onEvent?: (event: EngineEvent) => void

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              A callback to be executed when the operation yields an event.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              onOutput?: (out: string) => void

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              A callback to be executed when the operation produces stdout output.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              parallel?: number

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Allow P resource operations to run in parallel at once (1 for no parallelism).

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              plan?: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Plan specifies the path where the update plan should be saved.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              policyPackConfigs?: string[]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              A set of paths to JSON files containing configuration for the supplied policyPacks.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              policyPacks?: string[]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Run one or more policy packs as part of this operation.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              program?: PulumiFn

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              An inline (in-process) Pulumi program to execute the operation against.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              refresh?: boolean

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Refresh the state of the stack's resources against the cloud provider before running preview.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              replace?: string[]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Specify a set of resource URNs to replace.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              runProgram?: boolean

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Run the program in the workspace to perform the refresh.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              signal?: AbortSignal

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              A signal to abort an ongoing operation.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              suppressOutputs?: boolean

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Suppress display of stack outputs (in case they contain sensitive values).

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              suppressProgress?: boolean

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Suppress display of periodic progress dots.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              target?: string[]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Specify a set of resource URNs to operate on. Other resources will not be updated.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              targetDependents?: boolean

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Operate on dependent targets discovered but not specified in targets.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              tracing?: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Emit tracing to the specified endpoint. Use the file: scheme to write tracing data to a local files.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              userAgent?: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              A custom user agent to use when executing the operation.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              color?: "always" | "never" | "raw" | "auto"

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Colorize output.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              configFile?: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Use the configuration values in the specified file rather than detecting the file name.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              debug?: boolean

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Print detailed debugging output during resource operations.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              diff?: boolean

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Display the operation as a rich diff showing the overall change.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              exclude?: string[]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Specify a set of resource URNs to exclude from operations.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              excludeDependents?: boolean

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Exclude dependents of targets specified with exclude.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              expectNoChanges?: boolean

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Return an error if any changes occur during this operation.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              importFile?: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Save any creates seen during the preview into an import file to use with pulumi import.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              logFlow?: boolean

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Flow log settings to child processes (like plugins)

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              logToStdErr?: boolean

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Log to stderr instead of to files.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              logVerbosity?: number

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Enable verbose logging (e.g., v=3); anything >3 is very verbose.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              message?: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Optional message to associate with the operation.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              onError?: (err: string) => void

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              A callback to be executed when the operation produces stderr output.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              onEvent?: (event: EngineEvent) => void

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              A callback to be executed when the operation yields an event.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              onOutput?: (out: string) => void

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              A callback to be executed when the operation produces stdout output.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              parallel?: number

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Allow P resource operations to run in parallel at once (1 for no parallelism).

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              plan?: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Plan specifies the path where the update plan should be saved.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              policyPackConfigs?: string[]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              A set of paths to JSON files containing configuration for the supplied policyPacks.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              policyPacks?: string[]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Run one or more policy packs as part of this operation.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              program?: PulumiFn

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              An inline (in-process) Pulumi program to execute the operation against.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              refresh?: boolean

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Refresh the state of the stack's resources against the cloud provider before running preview.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              replace?: string[]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Specify a set of resource URNs to replace.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              runProgram?: boolean

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Run the program in the workspace to perform the refresh.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              signal?: AbortSignal

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              A signal to abort an ongoing operation.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              suppressOutputs?: boolean

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Suppress display of stack outputs (in case they contain sensitive values).

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              suppressProgress?: boolean

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Suppress display of periodic progress dots.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              target?: string[]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Specify a set of resource URNs to operate on. Other resources will not be updated.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              targetDependents?: boolean

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Operate on dependent targets discovered but not specified in targets.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              tracing?: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Emit tracing to the specified endpoint. Use the file: scheme to write tracing data to a local files.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              userAgent?: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              A custom user agent to use when executing the operation.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              diff --git a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/automation.PreviewResult.html b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/automation.PreviewResult.html index 028e931b7072..8beff87e0c21 100644 --- a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/automation.PreviewResult.html +++ b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/automation.PreviewResult.html @@ -1,9 +1,9 @@ -PreviewResult | @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Interface PreviewResult

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Output from running a Pulumi program preview.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                interface PreviewResult {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    changeSummary: OpMap;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    stderr: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    stdout: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                changeSummary +PreviewResult | @pulumi/pulumi - v3.243.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                @pulumi/pulumi - v3.243.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Interface PreviewResult

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Output from running a Pulumi program preview.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  interface PreviewResult {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      changeSummary: OpMap;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      stderr: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      stdout: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  changeSummary: OpMap

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  A summary of the changes yielded by the operation (e.g. 4 unchanged, 3 created, etc.).

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  stderr: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The standard error output from the preview.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  stdout: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The standard output from the preview.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  stderr: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The standard error output from the preview.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  stdout: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The standard output from the preview.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  diff --git a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/automation.ProjectBackend.html b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/automation.ProjectBackend.html index 2b19afc0924b..a0aab31cbe2b 100644 --- a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/automation.ProjectBackend.html +++ b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/automation.ProjectBackend.html @@ -1,3 +1,3 @@ -ProjectBackend | @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Interface ProjectBackend

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Configuration for the project's Pulumi state storage backend.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    interface ProjectBackend {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        url?: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    url?: string
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +ProjectBackend | @pulumi/pulumi - v3.243.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    @pulumi/pulumi - v3.243.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Interface ProjectBackend

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Configuration for the project's Pulumi state storage backend.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      interface ProjectBackend {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          url?: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      url?: string
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      diff --git a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/automation.ProjectRuntimeInfo.html b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/automation.ProjectRuntimeInfo.html index 1c6fbd300960..b165908f7028 100644 --- a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/automation.ProjectRuntimeInfo.html +++ b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/automation.ProjectRuntimeInfo.html @@ -1,4 +1,4 @@ -ProjectRuntimeInfo | @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Interface ProjectRuntimeInfo

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        A description of the project's program runtime and associated metadata.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        interface ProjectRuntimeInfo {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            name: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            options?: { [key: string]: any };
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        name +ProjectRuntimeInfo | @pulumi/pulumi - v3.243.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        @pulumi/pulumi - v3.243.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Interface ProjectRuntimeInfo

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          A description of the project's program runtime and associated metadata.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          interface ProjectRuntimeInfo {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              name: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              options?: { [key: string]: any };
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          name: string
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          options?: { [key: string]: any }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          name: string
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          options?: { [key: string]: any }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          diff --git a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/automation.ProjectSettings.html b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/automation.ProjectSettings.html index 6de8e533489a..fef7894dde82 100644 --- a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/automation.ProjectSettings.html +++ b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/automation.ProjectSettings.html @@ -1,6 +1,6 @@ -ProjectSettings | @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Interface ProjectSettings

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            A Pulumi project manifest. It describes metadata applying to all sub-stacks +ProjectSettings | @pulumi/pulumi - v3.243.0

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            @pulumi/pulumi - v3.243.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Interface ProjectSettings

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              A Pulumi project manifest. It describes metadata applying to all sub-stacks created from the project.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              interface ProjectSettings {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  author?: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  backend?: ProjectBackend;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  config?: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  description?: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  license?: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  main?: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  name: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  runtime: ProjectRuntimeInfo | ProjectRuntime;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  template?: ProjectTemplate;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  website?: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              interface ProjectSettings {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  author?: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  backend?: ProjectBackend;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  config?: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  description?: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  license?: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  main?: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  name: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  runtime: ProjectRuntimeInfo | ProjectRuntime;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  template?: ProjectTemplate;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  website?: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              author?: string
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              backend?: ProjectBackend
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              config?: string
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              description?: string
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              license?: string
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              main?: string
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              name: string
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              template?: ProjectTemplate
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              website?: string
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              author?: string
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              backend?: ProjectBackend
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              config?: string
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              description?: string
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              license?: string
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              main?: string
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              name: string
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              template?: ProjectTemplate
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              website?: string
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              diff --git a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/automation.ProjectTemplate.html b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/automation.ProjectTemplate.html index e4df0da2e3db..d3c83f5377fb 100644 --- a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/automation.ProjectTemplate.html +++ b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/automation.ProjectTemplate.html @@ -1,6 +1,6 @@ -ProjectTemplate | @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Interface ProjectTemplate

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                A template used to seed new stacks created from this project.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                interface ProjectTemplate {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    config?: { [key: string]: ProjectTemplateConfigValue };
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    description?: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    important?: boolean;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    quickstart?: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                config? +ProjectTemplate | @pulumi/pulumi - v3.243.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                @pulumi/pulumi - v3.243.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Interface ProjectTemplate

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  A template used to seed new stacks created from this project.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  interface ProjectTemplate {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      config?: { [key: string]: ProjectTemplateConfigValue };
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      description?: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      important?: boolean;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      quickstart?: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  config?: { [key: string]: ProjectTemplateConfigValue }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  description?: string
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  important?: boolean
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  quickstart?: string
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  config?: { [key: string]: ProjectTemplateConfigValue }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  description?: string
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  important?: boolean
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  quickstart?: string
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  diff --git a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/automation.ProjectTemplateConfigValue.html b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/automation.ProjectTemplateConfigValue.html index 6889093c0c78..9f20b22d675f 100644 --- a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/automation.ProjectTemplateConfigValue.html +++ b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/automation.ProjectTemplateConfigValue.html @@ -1,5 +1,5 @@ -ProjectTemplateConfigValue | @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Interface ProjectTemplateConfigValue

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    A placeholder config value for a project template.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    interface ProjectTemplateConfigValue {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        default?: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        description?: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        secret?: boolean;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    default? +ProjectTemplateConfigValue | @pulumi/pulumi - v3.243.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    @pulumi/pulumi - v3.243.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Interface ProjectTemplateConfigValue

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      A placeholder config value for a project template.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      interface ProjectTemplateConfigValue {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          default?: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          description?: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          secret?: boolean;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      default?: string
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      description?: string
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      secret?: boolean
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      default?: string
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      description?: string
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      secret?: boolean
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      diff --git a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/automation.PropertyDiff.html b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/automation.PropertyDiff.html index a1a82545283d..fbc1162c85af 100644 --- a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/automation.PropertyDiff.html +++ b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/automation.PropertyDiff.html @@ -1,7 +1,7 @@ -PropertyDiff | @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Interface PropertyDiff

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        A PropertyDiff describes the difference between a single property's old and new values.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        interface PropertyDiff {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            diffKind: DiffKind;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            inputDiff: boolean;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        diffKind +PropertyDiff | @pulumi/pulumi - v3.243.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        @pulumi/pulumi - v3.243.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Interface PropertyDiff

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          A PropertyDiff describes the difference between a single property's old and new values.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          interface PropertyDiff {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              diffKind: DiffKind;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              inputDiff: boolean;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          diffKind: DiffKind

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          diffKind is the kind of difference.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          inputDiff: boolean

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          inputDiff is true if this is a difference between old and new inputs +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          inputDiff: boolean

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          inputDiff is true if this is a difference between old and new inputs rather than old state and new inputs.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          diff --git a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/automation.PulumiCommandOptions.html b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/automation.PulumiCommandOptions.html index 6d5d3b46ff77..dec33e4f39e6 100644 --- a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/automation.PulumiCommandOptions.html +++ b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/automation.PulumiCommandOptions.html @@ -1,8 +1,8 @@ -PulumiCommandOptions | @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Interface PulumiCommandOptions

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            interface PulumiCommandOptions {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                root?: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                skipVersionCheck?: boolean;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                version?: SemVer;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            root? +PulumiCommandOptions | @pulumi/pulumi - v3.243.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            @pulumi/pulumi - v3.243.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Interface PulumiCommandOptions

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              interface PulumiCommandOptions {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  root?: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  skipVersionCheck?: boolean;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  version?: SemVer;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              root?: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              The directory to install the CLI in or where to look for an existing installation. Defaults to $HOME/.pulumi/versions/$VERSION.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              skipVersionCheck?: boolean

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Skips the minimum CLI version check, see PULUMI_AUTOMATION_API_SKIP_VERSION_CHECK.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              version?: SemVer

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              The version of the CLI to use. Defaults to the CLI version matching the SDK version.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              skipVersionCheck?: boolean

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Skips the minimum CLI version check, see PULUMI_AUTOMATION_API_SKIP_VERSION_CHECK.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              version?: SemVer

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              The version of the CLI to use. Defaults to the CLI version matching the SDK version.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              diff --git a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/automation.RefreshOptions.html b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/automation.RefreshOptions.html index 8dad2efb809e..36de0e0094a6 100644 --- a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/automation.RefreshOptions.html +++ b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/automation.RefreshOptions.html @@ -1,5 +1,5 @@ -RefreshOptions | @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Interface RefreshOptions

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Options controlling the behavior of a Stack.refresh() operation.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                interface RefreshOptions {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    clearPendingCreates?: boolean;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    color?: "always" | "never" | "raw" | "auto";
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    configFile?: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    debug?: boolean;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    exclude?: string[];
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    excludeDependents?: boolean;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    expectNoChanges?: boolean;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    importFile?: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    logFlow?: boolean;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    logToStdErr?: boolean;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    logVerbosity?: number;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    message?: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    onError?: (err: string) => void;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    onEvent?: (event: EngineEvent) => void;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    onOutput?: (out: string) => void;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    parallel?: number;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    previewOnly?: boolean;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    runProgram?: boolean;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    showSecrets?: boolean;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    signal?: AbortSignal;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    suppressOutputs?: boolean;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    suppressProgress?: boolean;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    target?: string[];
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    targetDependents?: boolean;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    tracing?: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    userAgent?: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Hierarchy (View Summary)

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                clearPendingCreates? +RefreshOptions | @pulumi/pulumi - v3.243.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                @pulumi/pulumi - v3.243.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Interface RefreshOptions

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Options controlling the behavior of a Stack.refresh() operation.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  interface RefreshOptions {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      clearPendingCreates?: boolean;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      color?: "always" | "never" | "raw" | "auto";
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      configFile?: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      debug?: boolean;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      exclude?: string[];
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      excludeDependents?: boolean;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      expectNoChanges?: boolean;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      importFile?: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      logFlow?: boolean;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      logToStdErr?: boolean;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      logVerbosity?: number;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      message?: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      onError?: (err: string) => void;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      onEvent?: (event: EngineEvent) => void;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      onOutput?: (out: string) => void;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      parallel?: number;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      previewOnly?: boolean;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      runProgram?: boolean;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      showSecrets?: boolean;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      signal?: AbortSignal;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      suppressOutputs?: boolean;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      suppressProgress?: boolean;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      target?: string[];
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      targetDependents?: boolean;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      tracing?: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      userAgent?: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Hierarchy (View Summary)

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  clearPendingCreates?: boolean

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Clear all pending creates, dropping them from the state

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  color?: "always" | "never" | "raw" | "auto"

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Colorize output.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  configFile?: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Use the configuration values in the specified file rather than detecting the file name.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  debug?: boolean

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Print detailed debugging output during resource operations.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  exclude?: string[]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Specify a set of resource URNs to exclude from operations.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  excludeDependents?: boolean

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Exclude dependents of targets specified with exclude.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  expectNoChanges?: boolean

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Return an error if any changes occur during this operation.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  importFile?: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Save any creates seen during the preview into an import file to use with pulumi import.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  logFlow?: boolean

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Flow log settings to child processes (like plugins)

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  logToStdErr?: boolean

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Log to stderr instead of to files.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  logVerbosity?: number

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Enable verbose logging (e.g., v=3); anything >3 is very verbose.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  message?: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Optional message to associate with the operation.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  onError?: (err: string) => void

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  A callback to be executed when the operation produces stderr output.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  onEvent?: (event: EngineEvent) => void

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  A callback to be executed when the operation yields an event.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  onOutput?: (out: string) => void

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  A callback to be executed when the operation produces stdout output.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  parallel?: number

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Allow P resource operations to run in parallel at once (1 for no parallelism).

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  previewOnly?: boolean

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Only show a preview of the refresh, but don't perform the refresh itself.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  color?: "always" | "never" | "raw" | "auto"

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Colorize output.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  configFile?: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Use the configuration values in the specified file rather than detecting the file name.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  debug?: boolean

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Print detailed debugging output during resource operations.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  exclude?: string[]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Specify a set of resource URNs to exclude from operations.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  excludeDependents?: boolean

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Exclude dependents of targets specified with exclude.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  expectNoChanges?: boolean

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Return an error if any changes occur during this operation.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  importFile?: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Save any creates seen during the preview into an import file to use with pulumi import.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  logFlow?: boolean

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Flow log settings to child processes (like plugins)

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  logToStdErr?: boolean

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Log to stderr instead of to files.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  logVerbosity?: number

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Enable verbose logging (e.g., v=3); anything >3 is very verbose.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  message?: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Optional message to associate with the operation.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  onError?: (err: string) => void

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  A callback to be executed when the operation produces stderr output.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  onEvent?: (event: EngineEvent) => void

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  A callback to be executed when the operation yields an event.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  onOutput?: (out: string) => void

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  A callback to be executed when the operation produces stdout output.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  parallel?: number

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Allow P resource operations to run in parallel at once (1 for no parallelism).

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  previewOnly?: boolean

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Only show a preview of the refresh, but don't perform the refresh itself.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Use previewRefresh instead.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  runProgram?: boolean

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Run the program in the workspace to perform the refresh.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  showSecrets?: boolean

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Include secrets in the operation summary.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  signal?: AbortSignal

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  A signal to abort an ongoing operation.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  suppressOutputs?: boolean

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Suppress display of stack outputs (in case they contain sensitive values).

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  suppressProgress?: boolean

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Suppress display of periodic progress dots.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  target?: string[]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Specify a set of resource URNs to operate on. Other resources will not be updated.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  targetDependents?: boolean

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Operate on dependent targets discovered but not specified in targets.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  tracing?: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Emit tracing to the specified endpoint. Use the file: scheme to write tracing data to a local files.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  userAgent?: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  A custom user agent to use when executing the operation.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  runProgram?: boolean

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Run the program in the workspace to perform the refresh.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  showSecrets?: boolean

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Include secrets in the operation summary.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  signal?: AbortSignal

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  A signal to abort an ongoing operation.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  suppressOutputs?: boolean

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Suppress display of stack outputs (in case they contain sensitive values).

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  suppressProgress?: boolean

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Suppress display of periodic progress dots.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  target?: string[]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Specify a set of resource URNs to operate on. Other resources will not be updated.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  targetDependents?: boolean

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Operate on dependent targets discovered but not specified in targets.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  tracing?: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Emit tracing to the specified endpoint. Use the file: scheme to write tracing data to a local files.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  userAgent?: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  A custom user agent to use when executing the operation.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  diff --git a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/automation.RefreshResult.html b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/automation.RefreshResult.html index 31ba5b0efd1d..505bcb1b36d2 100644 --- a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/automation.RefreshResult.html +++ b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/automation.RefreshResult.html @@ -1,8 +1,8 @@ -RefreshResult | @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Interface RefreshResult

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Output from refreshing the resources in a given Stack.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    interface RefreshResult {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        stderr: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        stdout: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        summary: UpdateSummary;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    stderr +RefreshResult | @pulumi/pulumi - v3.243.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    @pulumi/pulumi - v3.243.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Interface RefreshResult

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Output from refreshing the resources in a given Stack.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      interface RefreshResult {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          stderr: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          stdout: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          summary: UpdateSummary;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      stderr: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The standard error output from the refresh.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      stdout: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The standard output from the refresh.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      summary: UpdateSummary

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      A summary of the refresh.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      stdout: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The standard output from the refresh.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      summary: UpdateSummary

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      A summary of the refresh.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      diff --git a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/automation.RemoteDestroyOptions.html b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/automation.RemoteDestroyOptions.html index aa812a1901ae..8305f7507bee 100644 --- a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/automation.RemoteDestroyOptions.html +++ b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/automation.RemoteDestroyOptions.html @@ -1,4 +1,4 @@ -RemoteDestroyOptions | @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Interface RemoteDestroyOptions

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Options controlling the behavior of a RemoteStack.destroy operation.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        interface RemoteDestroyOptions {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            onEvent?: (event: EngineEvent) => void;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            onOutput?: (out: string) => void;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        onEvent? +RemoteDestroyOptions | @pulumi/pulumi - v3.243.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        @pulumi/pulumi - v3.243.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Interface RemoteDestroyOptions

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Options controlling the behavior of a RemoteStack.destroy operation.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          interface RemoteDestroyOptions {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              onEvent?: (event: EngineEvent) => void;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              onOutput?: (out: string) => void;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          onEvent?: (event: EngineEvent) => void
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          onOutput?: (out: string) => void
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          onEvent?: (event: EngineEvent) => void
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          onOutput?: (out: string) => void
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          diff --git a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/automation.RemoteGitAuthArgs.html b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/automation.RemoteGitAuthArgs.html index 2ac15bc507ac..16d67dd89b81 100644 --- a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/automation.RemoteGitAuthArgs.html +++ b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/automation.RemoteGitAuthArgs.html @@ -1,4 +1,4 @@ -RemoteGitAuthArgs | @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Interface RemoteGitAuthArgs

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Authentication options that can be specified for a private Git repository. +RemoteGitAuthArgs | @pulumi/pulumi - v3.243.0

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            @pulumi/pulumi - v3.243.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Interface RemoteGitAuthArgs

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Authentication options that can be specified for a private Git repository. There are three different authentication paths:

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • A Personal access token
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • @@ -6,17 +6,17 @@
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • Username and password (basic authentication)

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Only one authentication path is valid.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              interface RemoteGitAuthArgs {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  password?: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  personalAccessToken?: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  sshPrivateKey?: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  sshPrivateKeyPath?: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  username?: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              interface RemoteGitAuthArgs {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  password?: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  personalAccessToken?: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  sshPrivateKey?: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  sshPrivateKeyPath?: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  username?: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              password?: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              The password that pairs with a username as part of basic authentication, or the passphrase to be used with an SSH private key.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              personalAccessToken?: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              A Git personal access token, to be used in replacement of a password.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              sshPrivateKey?: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              A string containing the contents of a private key to be used for access +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              personalAccessToken?: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              A Git personal access token, to be used in replacement of a password.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              sshPrivateKey?: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              A string containing the contents of a private key to be used for access to the Git repository.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              sshPrivateKeyPath?: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              The absolute path to a private key to be used for access to the Git repository.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              username?: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              The username to use when authenticating to a Git repository with basic +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              sshPrivateKeyPath?: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              The absolute path to a private key to be used for access to the Git repository.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              username?: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              The username to use when authenticating to a Git repository with basic authentication.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              diff --git a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/automation.RemoteGitProgramArgs.html b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/automation.RemoteGitProgramArgs.html index 1acc337824d5..cc4715cf6637 100644 --- a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/automation.RemoteGitProgramArgs.html +++ b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/automation.RemoteGitProgramArgs.html @@ -1,14 +1,14 @@ -RemoteGitProgramArgs | @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Interface RemoteGitProgramArgs

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Description of a stack backed by a remote Pulumi program in a Git repository.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                interface RemoteGitProgramArgs {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    auth?: RemoteGitAuthArgs;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    branch?: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    commitHash?: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    projectPath?: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    stackName: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    url?: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                auth? +RemoteGitProgramArgs | @pulumi/pulumi - v3.243.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                @pulumi/pulumi - v3.243.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Interface RemoteGitProgramArgs

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Description of a stack backed by a remote Pulumi program in a Git repository.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  interface RemoteGitProgramArgs {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      auth?: RemoteGitAuthArgs;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      branch?: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      commitHash?: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      projectPath?: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      stackName: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      url?: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Authentication options for the repository.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  branch?: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  An optional branch to checkout.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  commitHash?: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Optional commit to checkout.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  projectPath?: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  An optional path relative to the repo root specifying location of the Pulumi program.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  stackName: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The associated stack name.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  url?: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The URL of the repository.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  branch?: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  An optional branch to checkout.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  commitHash?: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Optional commit to checkout.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  projectPath?: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  An optional path relative to the repo root specifying location of the Pulumi program.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  stackName: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The associated stack name.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  url?: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The URL of the repository.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  diff --git a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/automation.RemotePreviewOptions.html b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/automation.RemotePreviewOptions.html index 3b08fe2835d6..b972989a38fc 100644 --- a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/automation.RemotePreviewOptions.html +++ b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/automation.RemotePreviewOptions.html @@ -1,4 +1,4 @@ -RemotePreviewOptions | @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Interface RemotePreviewOptions

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Options controlling the behavior of a RemoteStack.preview operation.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    interface RemotePreviewOptions {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        onEvent?: (event: EngineEvent) => void;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        onOutput?: (out: string) => void;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    onEvent? +RemotePreviewOptions | @pulumi/pulumi - v3.243.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    @pulumi/pulumi - v3.243.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Interface RemotePreviewOptions

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Options controlling the behavior of a RemoteStack.preview operation.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      interface RemotePreviewOptions {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          onEvent?: (event: EngineEvent) => void;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          onOutput?: (out: string) => void;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      onEvent?: (event: EngineEvent) => void
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      onOutput?: (out: string) => void
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      onEvent?: (event: EngineEvent) => void
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      onOutput?: (out: string) => void
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      diff --git a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/automation.RemoteRefreshOptions.html b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/automation.RemoteRefreshOptions.html index 9f96864fe7e9..40a611cfdb0b 100644 --- a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/automation.RemoteRefreshOptions.html +++ b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/automation.RemoteRefreshOptions.html @@ -1,4 +1,4 @@ -RemoteRefreshOptions | @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Interface RemoteRefreshOptions

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Options controlling the behavior of a RemoteStack.refresh operation.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        interface RemoteRefreshOptions {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            onEvent?: (event: EngineEvent) => void;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            onOutput?: (out: string) => void;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        onEvent? +RemoteRefreshOptions | @pulumi/pulumi - v3.243.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        @pulumi/pulumi - v3.243.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Interface RemoteRefreshOptions

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Options controlling the behavior of a RemoteStack.refresh operation.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          interface RemoteRefreshOptions {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              onEvent?: (event: EngineEvent) => void;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              onOutput?: (out: string) => void;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          onEvent?: (event: EngineEvent) => void
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          onOutput?: (out: string) => void
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          onEvent?: (event: EngineEvent) => void
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          onOutput?: (out: string) => void
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          diff --git a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/automation.RemoteUpOptions.html b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/automation.RemoteUpOptions.html index 15fa2662cd96..c23edde4ff8e 100644 --- a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/automation.RemoteUpOptions.html +++ b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/automation.RemoteUpOptions.html @@ -1,4 +1,4 @@ -RemoteUpOptions | @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Interface RemoteUpOptions

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Options controlling the behavior of a RemoteStack.up operation.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            interface RemoteUpOptions {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                onEvent?: (event: EngineEvent) => void;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                onOutput?: (out: string) => void;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            onEvent? +RemoteUpOptions | @pulumi/pulumi - v3.243.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            @pulumi/pulumi - v3.243.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Interface RemoteUpOptions

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Options controlling the behavior of a RemoteStack.up operation.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              interface RemoteUpOptions {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  onEvent?: (event: EngineEvent) => void;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  onOutput?: (out: string) => void;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              onEvent?: (event: EngineEvent) => void
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              onOutput?: (out: string) => void
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              onEvent?: (event: EngineEvent) => void
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              onOutput?: (out: string) => void
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              diff --git a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/automation.RemoteWorkspaceOptions.html b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/automation.RemoteWorkspaceOptions.html index d67f48d39e52..dcce2ab24c01 100644 --- a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/automation.RemoteWorkspaceOptions.html +++ b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/automation.RemoteWorkspaceOptions.html @@ -1,16 +1,16 @@ -RemoteWorkspaceOptions | @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Interface RemoteWorkspaceOptions

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Extensibility options to configure a RemoteWorkspace.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                interface RemoteWorkspaceOptions {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    envVars?: { [key: string]: string | { secret: string } };
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    executorImage?: ExecutorImage;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    inheritSettings?: boolean;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    preRunCommands?: string[];
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    skipInstallDependencies?: boolean;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                envVars? +RemoteWorkspaceOptions | @pulumi/pulumi - v3.243.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                @pulumi/pulumi - v3.243.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Interface RemoteWorkspaceOptions

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Extensibility options to configure a RemoteWorkspace.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  interface RemoteWorkspaceOptions {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      envVars?: { [key: string]: string | { secret: string } };
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      executorImage?: ExecutorImage;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      inheritSettings?: boolean;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      preRunCommands?: string[];
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      skipInstallDependencies?: boolean;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  envVars?: { [key: string]: string | { secret: string } }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Environment values scoped to the remote workspace. These will be passed to remote operations.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  executorImage?: ExecutorImage

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The image to use for the remote executor.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  inheritSettings?: boolean

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Whether to inherit the deployment settings set on the stack. Defaults to +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  executorImage?: ExecutorImage

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The image to use for the remote executor.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  inheritSettings?: boolean

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Whether to inherit the deployment settings set on the stack. Defaults to false.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  preRunCommands?: string[]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  An optional list of arbitrary commands to run before a remote Pulumi +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  preRunCommands?: string[]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  An optional list of arbitrary commands to run before a remote Pulumi operation is invoked.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  skipInstallDependencies?: boolean

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Whether to skip the default dependency installation step. Defaults to +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  skipInstallDependencies?: boolean

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Whether to skip the default dependency installation step. Defaults to false.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  diff --git a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/automation.RemoveOptions.html b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/automation.RemoveOptions.html index 93bc8186ce49..748ef73ef4b4 100644 --- a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/automation.RemoveOptions.html +++ b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/automation.RemoveOptions.html @@ -1,5 +1,5 @@ -RemoveOptions | @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Interface RemoveOptions

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    interface RemoveOptions {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        force?: boolean;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        preserveConfig?: boolean;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    force? +RemoveOptions | @pulumi/pulumi - v3.243.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    @pulumi/pulumi - v3.243.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Interface RemoveOptions

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      interface RemoveOptions {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          force?: boolean;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          preserveConfig?: boolean;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      force?: boolean

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Forces deletion of the stack, leaving behind any resources managed by the stack

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      preserveConfig?: boolean

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Do not delete the corresponding Pulumi..yaml configuration file for the stack

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      preserveConfig?: boolean

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Do not delete the corresponding Pulumi..yaml configuration file for the stack

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      diff --git a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/automation.RenameOptions.html b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/automation.RenameOptions.html index fc039482ebd0..749b03d37e27 100644 --- a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/automation.RenameOptions.html +++ b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/automation.RenameOptions.html @@ -1,5 +1,5 @@ -RenameOptions | @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Interface RenameOptions

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Options controlling the behavior of a Stack.rename() operation.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        interface RenameOptions {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            color?: "always" | "never" | "raw" | "auto";
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            configFile?: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            debug?: boolean;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            importFile?: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            logFlow?: boolean;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            logToStdErr?: boolean;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            logVerbosity?: number;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            onError?: (err: string) => void;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            onOutput?: (out: string) => void;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            showSecrets?: boolean;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            signal?: AbortSignal;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            stackName: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            suppressOutputs?: boolean;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            suppressProgress?: boolean;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            tracing?: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Hierarchy (View Summary)

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        color? +RenameOptions | @pulumi/pulumi - v3.243.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        @pulumi/pulumi - v3.243.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Interface RenameOptions

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Options controlling the behavior of a Stack.rename() operation.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          interface RenameOptions {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              color?: "always" | "never" | "raw" | "auto";
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              configFile?: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              debug?: boolean;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              importFile?: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              logFlow?: boolean;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              logToStdErr?: boolean;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              logVerbosity?: number;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              onError?: (err: string) => void;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              onOutput?: (out: string) => void;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              showSecrets?: boolean;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              signal?: AbortSignal;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              stackName: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              suppressOutputs?: boolean;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              suppressProgress?: boolean;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              tracing?: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Hierarchy (View Summary)

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          color?: "always" | "never" | "raw" | "auto"

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Colorize output.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          configFile?: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Use the configuration values in the specified file rather than detecting the file name.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          debug?: boolean

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Print detailed debugging output during resource operations.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          importFile?: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Save any creates seen during the preview into an import file to use with pulumi import.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          logFlow?: boolean

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Flow log settings to child processes (like plugins)

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          logToStdErr?: boolean

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Log to stderr instead of to files.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          logVerbosity?: number

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Enable verbose logging (e.g., v=3); anything >3 is very verbose.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          onError?: (err: string) => void

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          A callback to be executed when the operation produces stderr output.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          onOutput?: (out: string) => void

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          A callback to be executed when the operation produces stdout output.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          showSecrets?: boolean

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Include secrets in the UpSummary.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          signal?: AbortSignal

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          A signal to abort an ongoing operation.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          stackName: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The new name for the stack.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          suppressOutputs?: boolean

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Suppress display of stack outputs (in case they contain sensitive values).

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          suppressProgress?: boolean

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Suppress display of periodic progress dots.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          tracing?: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Emit tracing to the specified endpoint. Use the file: scheme to write tracing data to a local files.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          configFile?: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Use the configuration values in the specified file rather than detecting the file name.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          debug?: boolean

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Print detailed debugging output during resource operations.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          importFile?: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Save any creates seen during the preview into an import file to use with pulumi import.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          logFlow?: boolean

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Flow log settings to child processes (like plugins)

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          logToStdErr?: boolean

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Log to stderr instead of to files.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          logVerbosity?: number

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Enable verbose logging (e.g., v=3); anything >3 is very verbose.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          onError?: (err: string) => void

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          A callback to be executed when the operation produces stderr output.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          onOutput?: (out: string) => void

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          A callback to be executed when the operation produces stdout output.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          showSecrets?: boolean

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Include secrets in the UpSummary.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          signal?: AbortSignal

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          A signal to abort an ongoing operation.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          stackName: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The new name for the stack.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          suppressOutputs?: boolean

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Suppress display of stack outputs (in case they contain sensitive values).

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          suppressProgress?: boolean

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Suppress display of periodic progress dots.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          tracing?: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Emit tracing to the specified endpoint. Use the file: scheme to write tracing data to a local files.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          diff --git a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/automation.RenameResult.html b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/automation.RenameResult.html index c5753441fb71..80ff3c76707d 100644 --- a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/automation.RenameResult.html +++ b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/automation.RenameResult.html @@ -1,8 +1,8 @@ -RenameResult | @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Interface RenameResult

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Output from renaming the Stack.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            interface RenameResult {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                stderr: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                stdout: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                summary: UpdateSummary;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            stderr +RenameResult | @pulumi/pulumi - v3.243.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            @pulumi/pulumi - v3.243.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Interface RenameResult

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Output from renaming the Stack.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              interface RenameResult {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  stderr: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  stdout: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  summary: UpdateSummary;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              stderr: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              The standard error output from the rename.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              stdout: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              The standard output from the rename.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              summary: UpdateSummary

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              A summary of the rename.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              stdout: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              The standard output from the rename.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              summary: UpdateSummary

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              A summary of the rename.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              diff --git a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/automation.ResOpFailedEvent.html b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/automation.ResOpFailedEvent.html index 1c47c597b30a..3269ff5057ec 100644 --- a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/automation.ResOpFailedEvent.html +++ b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/automation.ResOpFailedEvent.html @@ -1,8 +1,8 @@ -ResOpFailedEvent | @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Interface ResOpFailedEvent

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                An event emitted when a resource operation fails. Typically a +ResOpFailedEvent | @pulumi/pulumi - v3.243.0

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                @pulumi/pulumi - v3.243.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Interface ResOpFailedEvent

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  An event emitted when a resource operation fails. Typically a DiagnosticEvent is emitted before this event, indicating the root cause of the error.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  interface ResOpFailedEvent {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      metadata: StepEventMetadata;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      status: number;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      steps: number;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  interface ResOpFailedEvent {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      metadata: StepEventMetadata;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      status: number;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      steps: number;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Metadata for the event.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  status: number
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  steps: number
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  status: number
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  steps: number
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  diff --git a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/automation.ResOutputsEvent.html b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/automation.ResOutputsEvent.html index 7918719f4adc..77a2b6c69bf0 100644 --- a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/automation.ResOutputsEvent.html +++ b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/automation.ResOutputsEvent.html @@ -1,5 +1,5 @@ -ResOutputsEvent | @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Interface ResOutputsEvent

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    An event emitted when a resource is finished being provisioned.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    interface ResOutputsEvent {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        metadata: StepEventMetadata;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        planning?: boolean;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    metadata +ResOutputsEvent | @pulumi/pulumi - v3.243.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    @pulumi/pulumi - v3.243.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Interface ResOutputsEvent

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      An event emitted when a resource is finished being provisioned.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      interface ResOutputsEvent {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          metadata: StepEventMetadata;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          planning?: boolean;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Metadata for the event.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      planning?: boolean
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      planning?: boolean
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      diff --git a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/automation.ResourcePreEvent.html b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/automation.ResourcePreEvent.html index dae806af5104..2559f6e7078a 100644 --- a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/automation.ResourcePreEvent.html +++ b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/automation.ResourcePreEvent.html @@ -1,5 +1,5 @@ -ResourcePreEvent | @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Interface ResourcePreEvent

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        An event emitted before a resource is modified.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        interface ResourcePreEvent {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            metadata: StepEventMetadata;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            planning?: boolean;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        metadata +ResourcePreEvent | @pulumi/pulumi - v3.243.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        @pulumi/pulumi - v3.243.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Interface ResourcePreEvent

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          An event emitted before a resource is modified.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          interface ResourcePreEvent {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              metadata: StepEventMetadata;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              planning?: boolean;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Metadata for the event.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          planning?: boolean
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          planning?: boolean
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          diff --git a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/automation.StackSettings.html b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/automation.StackSettings.html index bb80c578a94a..79d2f5ae723c 100644 --- a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/automation.StackSettings.html +++ b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/automation.StackSettings.html @@ -1,6 +1,6 @@ -StackSettings | @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Interface StackSettings

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            A description of a Stack's configuration and encryption metadata.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            interface StackSettings {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                config?: { [key: string]: any };
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                encryptedKey?: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                encryptionSalt?: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                secretsProvider?: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            config? +StackSettings | @pulumi/pulumi - v3.243.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            @pulumi/pulumi - v3.243.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Interface StackSettings

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              A description of a Stack's configuration and encryption metadata.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              interface StackSettings {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  config?: { [key: string]: any };
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  encryptedKey?: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  encryptionSalt?: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  secretsProvider?: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              config?: { [key: string]: any }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              encryptedKey?: string
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              encryptionSalt?: string
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              secretsProvider?: string
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              config?: { [key: string]: any }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              encryptedKey?: string
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              encryptionSalt?: string
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              secretsProvider?: string
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              diff --git a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/automation.StackSettingsSecureConfigValue.html b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/automation.StackSettingsSecureConfigValue.html index e91ec35ac38f..e7b6fe32a4c9 100644 --- a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/automation.StackSettingsSecureConfigValue.html +++ b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/automation.StackSettingsSecureConfigValue.html @@ -1,3 +1,3 @@ -StackSettingsSecureConfigValue | @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Interface StackSettingsSecureConfigValue

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                A secret stack configuration entry.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                interface StackSettingsSecureConfigValue {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    secure: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                secure: string
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +StackSettingsSecureConfigValue | @pulumi/pulumi - v3.243.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                @pulumi/pulumi - v3.243.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Interface StackSettingsSecureConfigValue

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  A secret stack configuration entry.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  interface StackSettingsSecureConfigValue {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      secure: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  secure: string
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  diff --git a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/automation.StackSummary.html b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/automation.StackSummary.html index 282f952f534c..b04aa5f87aae 100644 --- a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/automation.StackSummary.html +++ b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/automation.StackSummary.html @@ -1,8 +1,8 @@ -StackSummary | @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Interface StackSummary

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    A summary of the status of a given stack.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    interface StackSummary {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        current: boolean;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        lastUpdate?: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        name: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        resourceCount?: number;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        updateInProgress?: boolean;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        url?: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    current +StackSummary | @pulumi/pulumi - v3.243.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    @pulumi/pulumi - v3.243.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Interface StackSummary

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      A summary of the status of a given stack.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      interface StackSummary {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          current: boolean;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          lastUpdate?: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          name: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          resourceCount?: number;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          updateInProgress?: boolean;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          url?: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      current: boolean
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      lastUpdate?: string
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      name: string
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      resourceCount?: number
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      updateInProgress?: boolean
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      url?: string
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      current: boolean
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      lastUpdate?: string
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      name: string
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      resourceCount?: number
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      updateInProgress?: boolean
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      url?: string
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      diff --git a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/automation.StartDebuggingEvent.html b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/automation.StartDebuggingEvent.html index ea77375492ec..d63f9888e5da 100644 --- a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/automation.StartDebuggingEvent.html +++ b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/automation.StartDebuggingEvent.html @@ -1,4 +1,4 @@ -StartDebuggingEvent | @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Interface StartDebuggingEvent

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        An event emitted when a debugger has been started and is waiting for the user +StartDebuggingEvent | @pulumi/pulumi - v3.243.0

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        @pulumi/pulumi - v3.243.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Interface StartDebuggingEvent

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          An event emitted when a debugger has been started and is waiting for the user to attach to it using the DAP protocol.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          interface StartDebuggingEvent {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              config: Record<string, any>;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          config: Record<string, any>
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          interface StartDebuggingEvent {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              config: Record<string, any>;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          config: Record<string, any>
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          diff --git a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/automation.StdoutEngineEvent.html b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/automation.StdoutEngineEvent.html index 72de1ef5073f..ee272e45b112 100644 --- a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/automation.StdoutEngineEvent.html +++ b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/automation.StdoutEngineEvent.html @@ -1,5 +1,5 @@ -StdoutEngineEvent | @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Interface StdoutEngineEvent

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            An event emitted whenever a generic message is written, for example warnings +StdoutEngineEvent | @pulumi/pulumi - v3.243.0

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            @pulumi/pulumi - v3.243.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Interface StdoutEngineEvent

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              An event emitted whenever a generic message is written, for example warnings from the pulumi CLI itself. Less common than DiagnosticEvent

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              interface StdoutEngineEvent {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  color: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  message: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              interface StdoutEngineEvent {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  color: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  message: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              color: string
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              message: string
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              color: string
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              message: string
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              diff --git a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/automation.StepEventMetadata.html b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/automation.StepEventMetadata.html index 6839c52166e0..96f87ef77348 100644 --- a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/automation.StepEventMetadata.html +++ b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/automation.StepEventMetadata.html @@ -1,7 +1,7 @@ -StepEventMetadata | @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Interface StepEventMetadata

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                StepEventMetadata describes a "step" within the Pulumi engine, which +StepEventMetadata | @pulumi/pulumi - v3.243.0

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                @pulumi/pulumi - v3.243.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Interface StepEventMetadata

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  StepEventMetadata describes a "step" within the Pulumi engine, which is any concrete action to migrate a set of cloud resources from one state to another.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  interface StepEventMetadata {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      detailedDiff?: Record<string, PropertyDiff>;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      diffs?: string[];
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      keys?: string[];
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      logical?: boolean;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      new?: StepEventStateMetadata;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      old?: StepEventStateMetadata;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      op: OpType;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      provider: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      type: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      urn: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  interface StepEventMetadata {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      detailedDiff?: Record<string, PropertyDiff>;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      diffs?: string[];
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      keys?: string[];
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      logical?: boolean;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      new?: StepEventStateMetadata;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      old?: StepEventStateMetadata;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      op: OpType;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      provider: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      type: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      urn: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  detailedDiff? diffs? keys? logical? @@ -12,13 +12,13 @@ type urn

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  detailedDiff?: Record<string, PropertyDiff>

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The diff for this step as a list of property paths and difference types.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  diffs?: string[]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Keys that changed with this step.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  keys?: string[]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Keys causing a replacement (only applicable for "create" and "replace" Ops).

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  logical?: boolean

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Logical is set if the step is a logical operation in the program.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  New is the state of the resource after performing the step.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Old is the state of the resource before performing the step.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  op: OpType

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The type of operation being performed.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  provider: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Provider actually performing the step.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  type: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The type of the resource being operated on.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  urn: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The URN of the resource being operated on.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  diffs?: string[]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Keys that changed with this step.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  keys?: string[]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Keys causing a replacement (only applicable for "create" and "replace" Ops).

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  logical?: boolean

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Logical is set if the step is a logical operation in the program.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  New is the state of the resource after performing the step.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Old is the state of the resource before performing the step.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  op: OpType

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The type of operation being performed.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  provider: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Provider actually performing the step.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  type: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The type of the resource being operated on.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  urn: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The URN of the resource being operated on.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  diff --git a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/automation.StepEventStateMetadata.html b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/automation.StepEventStateMetadata.html index 66d6be6ed061..572a4a1fc203 100644 --- a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/automation.StepEventStateMetadata.html +++ b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/automation.StepEventStateMetadata.html @@ -1,6 +1,6 @@ -StepEventStateMetadata | @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Interface StepEventStateMetadata

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    StepEventStateMetadata is the more detailed state information for a resource as it relates to +StepEventStateMetadata | @pulumi/pulumi - v3.243.0

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    @pulumi/pulumi - v3.243.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Interface StepEventStateMetadata

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      StepEventStateMetadata is the more detailed state information for a resource as it relates to a step(s) being performed.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      interface StepEventStateMetadata {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          custom?: boolean;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          delete?: boolean;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          id: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          initErrors?: string[];
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          inputs: Record<string, any>;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          outputs: Record<string, any>;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          parent: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          protect?: boolean;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          provider: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          retainOnDelete?: boolean;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          taint?: boolean;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          type: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          urn: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      interface StepEventStateMetadata {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          custom?: boolean;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          delete?: boolean;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          id: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          initErrors?: string[];
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          inputs: Record<string, any>;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          outputs: Record<string, any>;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          parent: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          protect?: boolean;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          provider: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          retainOnDelete?: boolean;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          taint?: boolean;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          type: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          urn: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      custom? delete? id initErrors? @@ -14,17 +14,17 @@ type urn

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      custom?: boolean

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Custom indicates if the resource is managed by a plugin.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      delete?: boolean

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Delete is true when the resource is pending deletion due to a replacement.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      id: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      ID is the resource's unique ID, assigned by the resource provider (or blank if none/uncreated).

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      initErrors?: string[]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      InitErrors is the set of errors encountered in the process of initializing resource.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      inputs: Record<string, any>

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Inputs contains the resource's input properties (as specified by the program). Secrets have +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      delete?: boolean

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Delete is true when the resource is pending deletion due to a replacement.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      id: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      ID is the resource's unique ID, assigned by the resource provider (or blank if none/uncreated).

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      initErrors?: string[]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      InitErrors is the set of errors encountered in the process of initializing resource.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      inputs: Record<string, any>

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Inputs contains the resource's input properties (as specified by the program). Secrets have filtered out, and large assets have been replaced by hashes as applicable.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      outputs: Record<string, any>

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Outputs contains the resource's complete output state (as returned by the resource provider).

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      parent: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Parent is an optional parent URN that this resource belongs to.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      protect?: boolean

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Protect is true to "protect" this resource (protected resources cannot be deleted).

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      provider: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Provider is the resource's provider reference

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      retainOnDelete?: boolean

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      RetainOnDelete is true if the resource is not physically deleted when it is logically deleted.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      taint?: boolean

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Taint is true to indicate that the resource should be replaced upon the next update.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      type: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The type of the resource being operated on.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      urn: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The URN of the resource being operated on.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      outputs: Record<string, any>

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Outputs contains the resource's complete output state (as returned by the resource provider).

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      parent: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Parent is an optional parent URN that this resource belongs to.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      protect?: boolean

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Protect is true to "protect" this resource (protected resources cannot be deleted).

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      provider: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Provider is the resource's provider reference

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      retainOnDelete?: boolean

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      RetainOnDelete is true if the resource is not physically deleted when it is logically deleted.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      taint?: boolean

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Taint is true to indicate that the resource should be replaced upon the next update.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      type: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The type of the resource being operated on.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      urn: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The URN of the resource being operated on.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      diff --git a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/automation.SummaryEvent.html b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/automation.SummaryEvent.html index c50b53e566c3..05bae4a85170 100644 --- a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/automation.SummaryEvent.html +++ b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/automation.SummaryEvent.html @@ -1,14 +1,14 @@ -SummaryEvent | @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Interface SummaryEvent

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        An event emitted at the end of an update, with a summary of the changes made.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        interface SummaryEvent {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            durationSeconds: number;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            maybeCorrupt: boolean;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            policyPacks: Record<string, string>;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            resourceChanges: OpMap;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        durationSeconds +SummaryEvent | @pulumi/pulumi - v3.243.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        @pulumi/pulumi - v3.243.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Interface SummaryEvent

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          An event emitted at the end of an update, with a summary of the changes made.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          interface SummaryEvent {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              durationSeconds: number;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              maybeCorrupt: boolean;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              policyPacks: Record<string, string>;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              resourceChanges: OpMap;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          durationSeconds: number

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The number of seconds the update took to execute.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          maybeCorrupt: boolean

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          True if one or more of the resources are in an invalid state.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          policyPacks: Record<string, string>

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The policy packs that were run during the update. Maps PolicyPackName -> version.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          maybeCorrupt: boolean

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          True if one or more of the resources are in an invalid state.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          policyPacks: Record<string, string>

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The policy packs that were run during the update. Maps PolicyPackName -> version.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Note: When this field was initially added, we forgot to add the JSON tag and are now locked into using PascalCase for this field to maintain backwards compatibility. For older clients this will map to the version, while for newer ones it will be the version tag prepended with "v".

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          resourceChanges: OpMap

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The count for resource changes by type.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          resourceChanges: OpMap

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The count for resource changes by type.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          diff --git a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/automation.TokenInfomation.html b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/automation.TokenInfomation.html index 488cf29f2f4a..a80f27dbb8ad 100644 --- a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/automation.TokenInfomation.html +++ b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/automation.TokenInfomation.html @@ -1,5 +1,5 @@ -TokenInfomation | @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Interface TokenInfomation

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            The currently logged-in Pulumi access token.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            interface TokenInfomation {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                name: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                organization?: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                team?: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            name +TokenInfomation | @pulumi/pulumi - v3.243.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            @pulumi/pulumi - v3.243.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Interface TokenInfomation

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              The currently logged-in Pulumi access token.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              interface TokenInfomation {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  name: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  organization?: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  team?: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              name: string
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              organization?: string
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              team?: string
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              name: string
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              organization?: string
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              team?: string
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              diff --git a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/automation.UpOptions.html b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/automation.UpOptions.html index 25cc9a7aa38a..64361926f178 100644 --- a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/automation.UpOptions.html +++ b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/automation.UpOptions.html @@ -1,5 +1,5 @@ -UpOptions | @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Interface UpOptions

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Options controlling the behavior of a Stack.up() operation.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                interface UpOptions {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    attachDebugger?: boolean;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    color?: "always" | "never" | "raw" | "auto";
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    configFile?: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    continueOnError?: boolean;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    debug?: boolean;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    diff?: boolean;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    exclude?: string[];
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    excludeDependents?: boolean;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    expectNoChanges?: boolean;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    importFile?: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    logFlow?: boolean;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    logToStdErr?: boolean;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    logVerbosity?: number;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    message?: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    onError?: (err: string) => void;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    onEvent?: (event: EngineEvent) => void;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    onOutput?: (out: string) => void;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    parallel?: number;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    plan?: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    policyPackConfigs?: string[];
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    policyPacks?: string[];
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    program?: PulumiFn;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    refresh?: boolean;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    replace?: string[];
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    runProgram?: boolean;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    showSecrets?: boolean;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    signal?: AbortSignal;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    suppressOutputs?: boolean;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    suppressProgress?: boolean;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    target?: string[];
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    targetDependents?: boolean;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    tracing?: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    userAgent?: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Hierarchy (View Summary)

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                attachDebugger? +UpOptions | @pulumi/pulumi - v3.243.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                @pulumi/pulumi - v3.243.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Interface UpOptions

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Options controlling the behavior of a Stack.up() operation.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  interface UpOptions {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      attachDebugger?: boolean;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      color?: "always" | "never" | "raw" | "auto";
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      configFile?: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      continueOnError?: boolean;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      debug?: boolean;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      diff?: boolean;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      exclude?: string[];
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      excludeDependents?: boolean;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      expectNoChanges?: boolean;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      importFile?: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      logFlow?: boolean;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      logToStdErr?: boolean;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      logVerbosity?: number;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      message?: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      onError?: (err: string) => void;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      onEvent?: (event: EngineEvent) => void;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      onOutput?: (out: string) => void;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      parallel?: number;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      plan?: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      policyPackConfigs?: string[];
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      policyPacks?: string[];
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      program?: PulumiFn;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      refresh?: boolean;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      replace?: string[];
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      runProgram?: boolean;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      showSecrets?: boolean;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      signal?: AbortSignal;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      suppressOutputs?: boolean;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      suppressProgress?: boolean;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      target?: string[];
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      targetDependents?: boolean;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      tracing?: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      userAgent?: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Hierarchy (View Summary)

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  attachDebugger?: boolean

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Run the process under a debugger, and pause until a debugger is attached.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  color?: "always" | "never" | "raw" | "auto"

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Colorize output.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  configFile?: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Use the configuration values in the specified file rather than detecting the file name.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  continueOnError?: boolean

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Continue the operation to completion even if errors occur.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  debug?: boolean

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Print detailed debugging output during resource operations.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  diff?: boolean

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Display the operation as a rich diff showing the overall change.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  exclude?: string[]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Specify a set of resource URNs to exclude from operations.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  excludeDependents?: boolean

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Exclude dependents of targets specified with exclude.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  expectNoChanges?: boolean

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Return an error if any changes occur during this operation.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  importFile?: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Save any creates seen during the preview into an import file to use with pulumi import.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  logFlow?: boolean

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Flow log settings to child processes (like plugins)

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  logToStdErr?: boolean

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Log to stderr instead of to files.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  logVerbosity?: number

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Enable verbose logging (e.g., v=3); anything >3 is very verbose.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  message?: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Optional message to associate with the operation.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  onError?: (err: string) => void

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  A callback to be executed when the operation produces stderr output.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  onEvent?: (event: EngineEvent) => void

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  A callback to be executed when the operation yields an event.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  onOutput?: (out: string) => void

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  A callback to be executed when the operation produces stdout output.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  parallel?: number

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Allow P resource operations to run in parallel at once (1 for no parallelism).

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  plan?: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Plan specifies the path to an update plan to use for the update.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  policyPackConfigs?: string[]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  A set of paths to JSON files containing configuration for the supplied policyPacks.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  policyPacks?: string[]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Run one or more policy packs as part of this operation.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  program?: PulumiFn

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  An inline (in-process) Pulumi program to execute the operation against.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  refresh?: boolean

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Refresh the state of the stack's resources before this update.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  replace?: string[]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Specify a set of resource URNs to replace.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  runProgram?: boolean

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Run the program in the workspace to perform the refresh.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  showSecrets?: boolean

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Include secrets in the UpSummary.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  signal?: AbortSignal

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  A signal to abort an ongoing operation.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  suppressOutputs?: boolean

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Suppress display of stack outputs (in case they contain sensitive values).

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  suppressProgress?: boolean

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Suppress display of periodic progress dots.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  target?: string[]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Specify a set of resource URNs to operate on. Other resources will not be updated.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  targetDependents?: boolean

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Operate on dependent targets discovered but not specified in targets.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  tracing?: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Emit tracing to the specified endpoint. Use the file: scheme to write tracing data to a local files.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  userAgent?: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  A custom user agent to use when executing the operation.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  color?: "always" | "never" | "raw" | "auto"

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Colorize output.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  configFile?: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Use the configuration values in the specified file rather than detecting the file name.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  continueOnError?: boolean

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Continue the operation to completion even if errors occur.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  debug?: boolean

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Print detailed debugging output during resource operations.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  diff?: boolean

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Display the operation as a rich diff showing the overall change.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  exclude?: string[]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Specify a set of resource URNs to exclude from operations.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  excludeDependents?: boolean

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Exclude dependents of targets specified with exclude.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  expectNoChanges?: boolean

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Return an error if any changes occur during this operation.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  importFile?: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Save any creates seen during the preview into an import file to use with pulumi import.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  logFlow?: boolean

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Flow log settings to child processes (like plugins)

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  logToStdErr?: boolean

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Log to stderr instead of to files.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  logVerbosity?: number

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Enable verbose logging (e.g., v=3); anything >3 is very verbose.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  message?: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Optional message to associate with the operation.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  onError?: (err: string) => void

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  A callback to be executed when the operation produces stderr output.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  onEvent?: (event: EngineEvent) => void

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  A callback to be executed when the operation yields an event.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  onOutput?: (out: string) => void

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  A callback to be executed when the operation produces stdout output.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  parallel?: number

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Allow P resource operations to run in parallel at once (1 for no parallelism).

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  plan?: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Plan specifies the path to an update plan to use for the update.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  policyPackConfigs?: string[]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  A set of paths to JSON files containing configuration for the supplied policyPacks.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  policyPacks?: string[]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Run one or more policy packs as part of this operation.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  program?: PulumiFn

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  An inline (in-process) Pulumi program to execute the operation against.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  refresh?: boolean

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Refresh the state of the stack's resources before this update.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  replace?: string[]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Specify a set of resource URNs to replace.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  runProgram?: boolean

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Run the program in the workspace to perform the refresh.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  showSecrets?: boolean

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Include secrets in the UpSummary.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  signal?: AbortSignal

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  A signal to abort an ongoing operation.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  suppressOutputs?: boolean

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Suppress display of stack outputs (in case they contain sensitive values).

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  suppressProgress?: boolean

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Suppress display of periodic progress dots.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  target?: string[]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Specify a set of resource URNs to operate on. Other resources will not be updated.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  targetDependents?: boolean

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Operate on dependent targets discovered but not specified in targets.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  tracing?: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Emit tracing to the specified endpoint. Use the file: scheme to write tracing data to a local files.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  userAgent?: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  A custom user agent to use when executing the operation.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  diff --git a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/automation.UpResult.html b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/automation.UpResult.html index e693cae8fede..e55c0cafffa3 100644 --- a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/automation.UpResult.html +++ b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/automation.UpResult.html @@ -1,10 +1,10 @@ -UpResult | @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Interface UpResult

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    The deployment output from running a Pulumi program update.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    interface UpResult {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        outputs: OutputMap;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        stderr: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        stdout: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        summary: UpdateSummary;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    outputs +UpResult | @pulumi/pulumi - v3.243.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    @pulumi/pulumi - v3.243.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Interface UpResult

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The deployment output from running a Pulumi program update.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      interface UpResult {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          outputs: OutputMap;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          stderr: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          stdout: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          summary: UpdateSummary;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      outputs: OutputMap

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The outputs from the update.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      stderr: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The standard error output from the update.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      stdout: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The standard output from the update.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      summary: UpdateSummary

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      A summary of the update.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      stderr: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The standard error output from the update.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      stdout: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The standard output from the update.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      summary: UpdateSummary

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      A summary of the update.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      diff --git a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/automation.UpdateSummary.html b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/automation.UpdateSummary.html index 065c4da00d93..bee3f9f52b19 100644 --- a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/automation.UpdateSummary.html +++ b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/automation.UpdateSummary.html @@ -1,5 +1,5 @@ -UpdateSummary | @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Interface UpdateSummary

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        A summary of a stack operation.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        interface UpdateSummary {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            config: ConfigMap;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Deployment?: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            endTime: Date;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            environment: { [key: string]: string };
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            kind: UpdateKind;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            message: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            resourceChanges?: OpMap;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            result: automation.UpdateResult;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            startTime: Date;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            version: number;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        config +UpdateSummary | @pulumi/pulumi - v3.243.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        @pulumi/pulumi - v3.243.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Interface UpdateSummary

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          A summary of a stack operation.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          interface UpdateSummary {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              config: ConfigMap;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Deployment?: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              endTime: Date;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              environment: { [key: string]: string };
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              kind: UpdateKind;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              message: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              resourceChanges?: OpMap;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              result: automation.UpdateResult;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              startTime: Date;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              version: number;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          config: ConfigMap

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The configuration used for the operation.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Deployment?: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          A raw JSON blob detailing the deployment.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          endTime: Date

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The time at which the operation completed.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          environment: { [key: string]: string }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The environment supplied to the operation.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The kind of operation to be executed/that was executed.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          message: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          An optional message associated with the operation.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          resourceChanges?: OpMap

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          A summary of the changes yielded by the operation (e.g. 4 unchanged, 3 +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Deployment?: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          A raw JSON blob detailing the deployment.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          endTime: Date

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The time at which the operation completed.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          environment: { [key: string]: string }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The environment supplied to the operation.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The kind of operation to be executed/that was executed.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          message: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          An optional message associated with the operation.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          resourceChanges?: OpMap

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          A summary of the changes yielded by the operation (e.g. 4 unchanged, 3 created, etc.).

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The operation result.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          startTime: Date

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The time at which the operation started.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          version: number

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The version of the stack created by the operation.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The operation result.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          startTime: Date

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The time at which the operation started.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          version: number

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The version of the stack created by the operation.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          diff --git a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/automation.WhoAmIResult.html b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/automation.WhoAmIResult.html index 94d1d4050a6d..55662f3652a5 100644 --- a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/automation.WhoAmIResult.html +++ b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/automation.WhoAmIResult.html @@ -1,6 +1,6 @@ -WhoAmIResult | @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Interface WhoAmIResult

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            The currently logged-in Pulumi identity.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            interface WhoAmIResult {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                organizations?: string[];
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                tokenInformation?: TokenInfomation;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                url?: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                user: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            organizations? +WhoAmIResult | @pulumi/pulumi - v3.243.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            @pulumi/pulumi - v3.243.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Interface WhoAmIResult

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              The currently logged-in Pulumi identity.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              interface WhoAmIResult {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  organizations?: string[];
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  tokenInformation?: TokenInfomation;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  url?: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  user: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              organizations?: string[]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              tokenInformation?: TokenInfomation
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              url?: string
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              user: string
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              organizations?: string[]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              tokenInformation?: TokenInfomation
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              url?: string
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              user: string
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              diff --git a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/automation.Workspace.html b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/automation.Workspace.html index 0f3666dd8bdf..1a15ae05f2a5 100644 --- a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/automation.Workspace.html +++ b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/automation.Workspace.html @@ -1,9 +1,9 @@ -Workspace | @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Interface WorkspaceAlpha

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Workspace is the execution context containing a single Pulumi +Workspace | @pulumi/pulumi - v3.243.0

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                @pulumi/pulumi - v3.243.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Interface WorkspaceAlpha

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Workspace is the execution context containing a single Pulumi project, a program, and multiple Stacks. Workspaces are used to manage the execution environment, providing various utilities such as plugin installation, environment configuration ($PULUMI_HOME), and creation, deletion, and listing of Stacks.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  interface Workspace {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      envVars: { [key: string]: string };
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      program?: PulumiFn;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      pulumiCommand: PulumiCommand;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      pulumiHome?: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      pulumiVersion: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      secretsProvider?: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      workDir: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      addEnvironments(
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          stackName: string,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          ...environments: string[],
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      ): Promise<void>;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      createStack(stackName: string): Promise<void>;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      exportStack(stackName: string): Promise<Deployment>;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      getAllConfig(stackName: string): Promise<ConfigMap>;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      getConfig(
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          stackName: string,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          key: string,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          path?: boolean,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      ): Promise<ConfigValue>;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      getTag(stackName: string, key: string): Promise<string>;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      importStack(stackName: string, state: Deployment): Promise<void>;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      installPlugin(name: string, version: string, kind?: string): Promise<void>;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      installPluginFromServer(
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          name: string,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          version: string,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          server: string,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      ): Promise<void>;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      listEnvironments(stackName: string): Promise<string[]>;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      listPlugins(): Promise<PluginInfo[]>;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      listStacks(opts?: ListOptions): Promise<StackSummary[]>;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      listTags(stackName: string): Promise<TagMap>;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      postCommandCallback(stackName: string): Promise<void>;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      projectSettings(): Promise<ProjectSettings>;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      refreshConfig(stackName: string): Promise<ConfigMap>;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      removeAllConfig(
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          stackName: string,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          keys: string[],
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          path?: boolean,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      ): Promise<void>;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      removeConfig(stackName: string, key: string, path?: boolean): Promise<void>;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      removeEnvironment(stackName: string, environment: string): Promise<void>;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      removePlugin(
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          name?: string,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          versionRange?: string,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          kind?: string,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      ): Promise<void>;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      removeStack(stackName: string, opts?: RemoveOptions): Promise<void>;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      removeTag(stackName: string, key: string): Promise<void>;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      saveProjectSettings(settings: ProjectSettings): Promise<void>;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      saveStackSettings(
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          stackName: string,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          settings: StackSettings,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      ): Promise<void>;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      selectStack(stackName: string): Promise<void>;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      serializeArgsForOp(stackName: string): Promise<string[]>;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      setAllConfig(
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          stackName: string,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          config: ConfigMap,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          path?: boolean,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      ): Promise<void>;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      setAllConfigJson(stackName: string, configJson: string): Promise<void>;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      setConfig(
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          stackName: string,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          key: string,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          value: ConfigValue,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          path?: boolean,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      ): Promise<void>;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      setTag(stackName: string, key: string, value: string): Promise<void>;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      stack(): Promise<StackSummary | undefined>;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      stackOutputs(stackName: string): Promise<OutputMap>;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      stackSettings(stackName: string): Promise<StackSettings>;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      whoAmI(): Promise<WhoAmIResult>;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Implemented by

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  interface Workspace {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      envVars: { [key: string]: string };
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      program?: PulumiFn;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      pulumiCommand: PulumiCommand;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      pulumiHome?: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      pulumiVersion: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      secretsProvider?: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      workDir: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      addEnvironments(
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          stackName: string,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          ...environments: string[],
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      ): Promise<void>;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      createStack(stackName: string): Promise<void>;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      exportStack(stackName: string): Promise<Deployment>;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      getAllConfig(stackName: string): Promise<ConfigMap>;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      getConfig(
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          stackName: string,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          key: string,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          path?: boolean,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      ): Promise<ConfigValue>;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      getTag(stackName: string, key: string): Promise<string>;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      importStack(stackName: string, state: Deployment): Promise<void>;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      installPlugin(name: string, version: string, kind?: string): Promise<void>;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      installPluginFromServer(
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          name: string,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          version: string,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          server: string,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      ): Promise<void>;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      listEnvironments(stackName: string): Promise<string[]>;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      listPlugins(): Promise<PluginInfo[]>;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      listStacks(opts?: ListOptions): Promise<StackSummary[]>;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      listTags(stackName: string): Promise<TagMap>;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      postCommandCallback(stackName: string): Promise<void>;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      projectSettings(): Promise<ProjectSettings>;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      refreshConfig(stackName: string): Promise<ConfigMap>;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      removeAllConfig(
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          stackName: string,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          keys: string[],
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          path?: boolean,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      ): Promise<void>;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      removeConfig(stackName: string, key: string, path?: boolean): Promise<void>;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      removeEnvironment(stackName: string, environment: string): Promise<void>;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      removePlugin(
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          name?: string,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          versionRange?: string,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          kind?: string,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      ): Promise<void>;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      removeStack(stackName: string, opts?: RemoveOptions): Promise<void>;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      removeTag(stackName: string, key: string): Promise<void>;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      saveProjectSettings(settings: ProjectSettings): Promise<void>;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      saveStackSettings(
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          stackName: string,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          settings: StackSettings,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      ): Promise<void>;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      selectStack(stackName: string): Promise<void>;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      serializeArgsForOp(stackName: string): Promise<string[]>;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      setAllConfig(
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          stackName: string,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          config: ConfigMap,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          path?: boolean,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      ): Promise<void>;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      setAllConfigJson(stackName: string, configJson: string): Promise<void>;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      setConfig(
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          stackName: string,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          key: string,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          value: ConfigValue,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          path?: boolean,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      ): Promise<void>;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      setTag(stackName: string, key: string, value: string): Promise<void>;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      stack(): Promise<StackSummary | undefined>;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      stackOutputs(stackName: string): Promise<OutputMap>;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      stackSettings(stackName: string): Promise<StackSettings>;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      whoAmI(): Promise<WhoAmIResult>;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Implemented by

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  envVars: { [key: string]: string }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Environment values scoped to the current workspace. These will be supplied to every Pulumi command.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  program?: PulumiFn

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The inline program PulumiFn to be used for preview/update +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  program?: PulumiFn

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The inline program PulumiFn to be used for preview/update operations, if any. If none is specified, the stack will refer to ProjectSettings for this information.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  pulumiCommand: PulumiCommand

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The underlying Pulumi CLI.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  pulumiHome?: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The directory override for CLI metadata if set. This customizes the +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  pulumiCommand: PulumiCommand

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The underlying Pulumi CLI.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  pulumiHome?: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The directory override for CLI metadata if set. This customizes the location of $PULUMI_HOME where metadata is stored and plugins are installed.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  pulumiVersion: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The version of the underlying Pulumi CLI/engine.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  secretsProvider?: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The secrets provider to use for encryption and decryption of stack +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  pulumiVersion: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The version of the underlying Pulumi CLI/engine.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  secretsProvider?: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The secrets provider to use for encryption and decryption of stack secrets.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  workDir: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The working directory to run Pulumi CLI commands.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Methods

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  workDir: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The working directory to run Pulumi CLI commands.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Methods

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • Alpha

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Adds environments to the end of a stack's import list. Imported environments are merged in order per the ESC merge rules. The list of environments behaves as if it were the import list in an anonymous environment.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Parameters

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • stackName: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The stack to operate on

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • ...environments: string[]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The names of the environments to add to the stack's configuration

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Returns Promise<void>

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • Alpha

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Creates and sets a new stack with the stack name, failing if one already +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Returns Promise<void>

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • Alpha

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Creates and sets a new stack with the stack name, failing if one already exists.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Parameters

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • stackName: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The stack to create.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Returns Promise<void>

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • Alpha

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Exports the deployment state of the stack. This can be combined with +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Returns Promise<void>

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Returns Promise<Deployment>

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Returns Promise<ConfigMap>

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Returns Promise<ConfigValue>

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Returns Promise<string>

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Returns Promise<void>

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Returns Promise<void>

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Returns Promise<void>

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Returns Promise<string[]>

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Returns Promise<StackSummary[]>

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Returns Promise<TagMap>

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Returns Promise<ConfigMap>

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Returns Promise<void>

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Returns Promise<void>

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Returns Promise<void>

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Returns Promise<void>

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Returns Promise<void>

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Returns Promise<void>

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Returns Promise<void>

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Returns Promise<void>

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Returns Promise<void>

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Returns Promise<void>

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Returns Promise<void>

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Returns Promise<void>

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Returns Promise<void>

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Returns Promise<OutputMap>

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Returns Promise<StackSettings>

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  diff --git a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/dynamic.CheckFailure.html b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/dynamic.CheckFailure.html index fbeb131ebee3..ea4eddd26572 100644 --- a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/dynamic.CheckFailure.html +++ b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/dynamic.CheckFailure.html @@ -1,7 +1,7 @@ -CheckFailure | @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Interface CheckFailure

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    CheckFailure represents a single failure in the results of a call to +CheckFailure | @pulumi/pulumi - v3.243.0

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    @pulumi/pulumi - v3.243.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Interface CheckFailure

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      CheckFailure represents a single failure in the results of a call to ResourceProvider.check.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      interface CheckFailure {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          property: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          reason: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      interface CheckFailure {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          property: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          reason: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      property: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The property that failed validation.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      reason: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The reason that the property failed validation.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      reason: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The reason that the property failed validation.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      diff --git a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/dynamic.CheckResult.html b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/dynamic.CheckResult.html index cc6bb516325b..e2fc39605f56 100644 --- a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/dynamic.CheckResult.html +++ b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/dynamic.CheckResult.html @@ -1,6 +1,6 @@ -CheckResult | @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Interface CheckResult<Inputs>

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        CheckResult represents the results of a call to ResourceProvider.check.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        interface CheckResult<Inputs = any> {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            failures?: dynamic.CheckFailure[];
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            inputs?: Inputs;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Type Parameters

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • Inputs = any
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        failures? +CheckResult | @pulumi/pulumi - v3.243.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        @pulumi/pulumi - v3.243.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Interface CheckResult<Inputs>

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          CheckResult represents the results of a call to ResourceProvider.check.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          interface CheckResult<Inputs = any> {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              failures?: dynamic.CheckFailure[];
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              inputs?: Inputs;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Type Parameters

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • Inputs = any
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          failures?: dynamic.CheckFailure[]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Any validation failures that occurred.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          inputs?: Inputs

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The inputs to use, if any.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          inputs?: Inputs

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The inputs to use, if any.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          diff --git a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/dynamic.Config.html b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/dynamic.Config.html index 080e0a43fece..28047241da5c 100644 --- a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/dynamic.Config.html +++ b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/dynamic.Config.html @@ -1,13 +1,13 @@ -Config | @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Interface Config

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Config is a bag of configuration values that can be passed to a provider's +Config | @pulumi/pulumi - v3.243.0

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            @pulumi/pulumi - v3.243.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Interface Config

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Config is a bag of configuration values that can be passed to a provider's configure method.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Use the Config.get and Config.require methods to retrieve a configuration value by key.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              interface Config {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  get(key: string): string | undefined;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  require(key: string): string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Methods

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              get +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              interface Config {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  get(key: string): string | undefined;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  require(key: string): string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Methods

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Methods

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • get retrieves a configuration value by key. Returns undefined if the key is not present.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Parameters

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • key: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The key to lookup in the configuration. If no namespace is provided in the key, the project name will be used as the namespace.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Returns string | undefined

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • require retrieves a configuration value by key. Returns an error if the key is not present.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Returns string | undefined

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • require retrieves a configuration value by key. Returns an error if the key is not present.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Parameters

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • key: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The key to lookup in the configuration. If no namespace is provided in the key, the project name will be used as the namespace.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Returns string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Returns string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              diff --git a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/dynamic.ConfigureRequest.html b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/dynamic.ConfigureRequest.html index 4c4f75288892..4a0035b27c3a 100644 --- a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/dynamic.ConfigureRequest.html +++ b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/dynamic.ConfigureRequest.html @@ -1,4 +1,4 @@ -ConfigureRequest | @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Interface ConfigureRequest

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                ConfigureRequest is the input to a provider's configure method.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                interface ConfigureRequest {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    config: dynamic.Config;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                config +ConfigureRequest | @pulumi/pulumi - v3.243.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                @pulumi/pulumi - v3.243.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Interface ConfigureRequest

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  ConfigureRequest is the input to a provider's configure method.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  interface ConfigureRequest {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      config: dynamic.Config;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  config: dynamic.Config

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The stack's configuration.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  diff --git a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/dynamic.CreateResult.html b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/dynamic.CreateResult.html index 1cbdf33dcb55..f5cd90bee813 100644 --- a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/dynamic.CreateResult.html +++ b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/dynamic.CreateResult.html @@ -1,7 +1,7 @@ -CreateResult | @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Interface CreateResult<Outputs>

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    CreateResult represents the results of a call to +CreateResult | @pulumi/pulumi - v3.243.0

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    @pulumi/pulumi - v3.243.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Interface CreateResult<Outputs>

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      CreateResult represents the results of a call to ResourceProvider.create.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      interface CreateResult<Outputs = any> {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          id: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          outs?: Outputs;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Type Parameters

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • Outputs = any
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      id +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      interface CreateResult<Outputs = any> {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          id: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          outs?: Outputs;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Type Parameters

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • Outputs = any
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      id: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The ID of the created resource.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      outs?: Outputs

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Any properties that were computed during creation.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      outs?: Outputs

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Any properties that were computed during creation.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      diff --git a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/dynamic.DiffResult.html b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/dynamic.DiffResult.html index 1e108b76a950..9946ce159c40 100644 --- a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/dynamic.DiffResult.html +++ b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/dynamic.DiffResult.html @@ -1,13 +1,13 @@ -DiffResult | @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Interface DiffResult

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        DiffResult represents the results of a call to +DiffResult | @pulumi/pulumi - v3.243.0

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        @pulumi/pulumi - v3.243.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Interface DiffResult

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          DiffResult represents the results of a call to ResourceProvider.diff.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          interface DiffResult {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              changes?: boolean;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              deleteBeforeReplace?: boolean;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              replaces?: string[];
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              stables?: string[];
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          interface DiffResult {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              changes?: boolean;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              deleteBeforeReplace?: boolean;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              replaces?: string[];
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              stables?: string[];
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          changes?: boolean

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          If true, this diff detected changes and suggests an update.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          deleteBeforeReplace?: boolean

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          If true, and a replacement occurs, the resource will first be deleted +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          deleteBeforeReplace?: boolean

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          If true, and a replacement occurs, the resource will first be deleted before being recreated. This is to avoid potential side-by-side issues with the default create before delete behavior.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          replaces?: string[]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          If this update requires a replacement, the set of properties triggering it.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          stables?: string[]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          An optional list of properties that will not ever change.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          replaces?: string[]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          If this update requires a replacement, the set of properties triggering it.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          stables?: string[]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          An optional list of properties that will not ever change.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          diff --git a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/dynamic.ReadResult.html b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/dynamic.ReadResult.html index 5f9c1ffff976..732043677413 100644 --- a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/dynamic.ReadResult.html +++ b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/dynamic.ReadResult.html @@ -1,11 +1,11 @@ -ReadResult | @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Interface ReadResult<Outputs>

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            ReadResult represents the results of a call to +ReadResult | @pulumi/pulumi - v3.243.0

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            @pulumi/pulumi - v3.243.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Interface ReadResult<Outputs>

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              ReadResult represents the results of a call to ResourceProvider.read.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              interface ReadResult<Outputs = any> {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  id?: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  inputs?: Outputs;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  props?: Outputs;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Type Parameters

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • Outputs = any
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              id? +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              interface ReadResult<Outputs = any> {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  id?: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  inputs?: Outputs;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  props?: Outputs;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Type Parameters

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • Outputs = any
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              id?: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              The ID of the resource ready back (or blank if missing).

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              inputs?: Outputs

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              The input properties to use for subsequent diffs. If not provided, inputs will remain unchanged. +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              inputs?: Outputs

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              The input properties to use for subsequent diffs. If not provided, inputs will remain unchanged. This is useful when a refresh operation detects drift and wants to update the inputs to match the current outputs, ensuring subsequent diffs compare against the refreshed state.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              props?: Outputs

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              The current property state read from the live environment.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              props?: Outputs

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              The current property state read from the live environment.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              diff --git a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/dynamic.ResourceProvider.html b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/dynamic.ResourceProvider.html index 1488a5332013..9f8604793709 100644 --- a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/dynamic.ResourceProvider.html +++ b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/dynamic.ResourceProvider.html @@ -1,6 +1,6 @@ -ResourceProvider | @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Interface ResourceProvider<Inputs, Outputs>

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                ResourceProvider represents an object that provides CRUD operations +ResourceProvider | @pulumi/pulumi - v3.243.0

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                @pulumi/pulumi - v3.243.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Interface ResourceProvider<Inputs, Outputs>

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  ResourceProvider represents an object that provides CRUD operations for a particular type of resource.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  interface ResourceProvider<Inputs = any, Outputs = any> {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      check?: (
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          olds: Inputs,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          news: Inputs,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      ) => Promise<dynamic.CheckResult<Inputs>>;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      configure?: (req: ConfigureRequest) => Promise<void>;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      create: (inputs: Inputs) => Promise<dynamic.CreateResult<Outputs>>;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      delete?: (id: string, props: Outputs) => Promise<void>;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      diff?: (
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          id: string,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          olds: Outputs,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          news: Inputs,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      ) => Promise<dynamic.DiffResult>;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      read?: (
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          id: string,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          props?: Outputs,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      ) => Promise<dynamic.ReadResult<Outputs>>;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      update?: (
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          id: string,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          olds: Outputs,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          news: Inputs,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      ) => Promise<dynamic.UpdateResult<Outputs>>;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Type Parameters

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • Inputs = any
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • Outputs = any
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  interface ResourceProvider<Inputs = any, Outputs = any> {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      check?: (
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          olds: Inputs,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          news: Inputs,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      ) => Promise<dynamic.CheckResult<Inputs>>;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      configure?: (req: ConfigureRequest) => Promise<void>;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      create: (inputs: Inputs) => Promise<dynamic.CreateResult<Outputs>>;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      delete?: (id: string, props: Outputs) => Promise<void>;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      diff?: (
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          id: string,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          olds: Outputs,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          news: Inputs,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      ) => Promise<dynamic.DiffResult>;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      read?: (
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          id: string,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          props?: Outputs,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      ) => Promise<dynamic.ReadResult<Outputs>>;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      update?: (
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          id: string,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          olds: Outputs,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          news: Inputs,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      ) => Promise<dynamic.UpdateResult<Outputs>>;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Type Parameters

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • Inputs = any
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • Outputs = any
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  check? configure? create delete? @@ -10,25 +10,25 @@

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  check?: (olds: Inputs, news: Inputs) => Promise<dynamic.CheckResult<Inputs>>

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Validates that the given property bag is valid for a resource of the given type.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Type Declaration

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  configure?: (req: ConfigureRequest) => Promise<void>

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Configures the resource provider.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  create: (inputs: Inputs) => Promise<dynamic.CreateResult<Outputs>>

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Allocates a new instance of the provided resource and returns its unique +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Returns Promise<dynamic.CheckResult<Inputs>>

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  configure?: (req: ConfigureRequest) => Promise<void>

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Configures the resource provider.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  create: (inputs: Inputs) => Promise<dynamic.CreateResult<Outputs>>

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Allocates a new instance of the provided resource and returns its unique ID afterwards. If this call fails, the resource must not have been created (i.e., it is "transactional").

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Type Declaration

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  delete?: (id: string, props: Outputs) => Promise<void>

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Tears down an existing resource with the given ID. If it fails, +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Returns Promise<dynamic.CreateResult<Outputs>>

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  delete?: (id: string, props: Outputs) => Promise<void>

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Tears down an existing resource with the given ID. If it fails, the resource is assumed to still exist.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Type Declaration

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  diff?: (id: string, olds: Outputs, news: Inputs) => Promise<dynamic.DiffResult>

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Checks what impacts a hypothetical update will have on the resource's +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Returns Promise<void>

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  diff?: (id: string, olds: Outputs, news: Inputs) => Promise<dynamic.DiffResult>

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Checks what impacts a hypothetical update will have on the resource's properties.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Type Declaration

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  read?: (id: string, props?: Outputs) => Promise<dynamic.ReadResult<Outputs>>

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Reads the current live state associated with a resource. Enough state +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Returns Promise<dynamic.DiffResult>

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  read?: (id: string, props?: Outputs) => Promise<dynamic.ReadResult<Outputs>>

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Reads the current live state associated with a resource. Enough state must be included in the inputs to uniquely identify the resource; this is typically just the resource ID, but it may also include some properties.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  update?: (
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      id: string,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      olds: Outputs,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      news: Inputs,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  ) => Promise<dynamic.UpdateResult<Outputs>>

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Updates an existing resource with new values.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  update?: (
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      id: string,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      olds: Outputs,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      news: Inputs,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  ) => Promise<dynamic.UpdateResult<Outputs>>

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Updates an existing resource with new values.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Type Declaration

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Returns Promise<dynamic.UpdateResult<Outputs>>

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  diff --git a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/dynamic.UpdateResult.html b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/dynamic.UpdateResult.html index 535333335dff..727b9f408808 100644 --- a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/dynamic.UpdateResult.html +++ b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/dynamic.UpdateResult.html @@ -1,5 +1,5 @@ -UpdateResult | @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Interface UpdateResult<Outputs>

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    UpdateResult represents the results of a call to +UpdateResult | @pulumi/pulumi - v3.243.0

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    @pulumi/pulumi - v3.243.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Interface UpdateResult<Outputs>

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      UpdateResult represents the results of a call to ResourceProvider.update.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      interface UpdateResult<Outputs = any> {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          outs?: Outputs;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Type Parameters

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • Outputs = any
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      interface UpdateResult<Outputs = any> {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          outs?: Outputs;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Type Parameters

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • Outputs = any
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      outs?: Outputs

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Any properties that were computed during updating.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      diff --git a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/provider.CheckFailure.html b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/provider.CheckFailure.html index d9a4d8d508a7..2c09a75ab9d7 100644 --- a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/provider.CheckFailure.html +++ b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/provider.CheckFailure.html @@ -1,7 +1,7 @@ -CheckFailure | @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Interface CheckFailure

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        CheckFailure represents a single failure in the results of a call to +CheckFailure | @pulumi/pulumi - v3.243.0

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        @pulumi/pulumi - v3.243.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Interface CheckFailure

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          CheckFailure represents a single failure in the results of a call to ResourceProvider.check.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          interface CheckFailure {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              property: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              reason: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          interface CheckFailure {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              property: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              reason: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          property: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The property that failed validation.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          reason: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The reason that the property failed validation.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          reason: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The reason that the property failed validation.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          diff --git a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/provider.CheckResult.html b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/provider.CheckResult.html index 2dde6593e869..725fb1011e71 100644 --- a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/provider.CheckResult.html +++ b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/provider.CheckResult.html @@ -1,7 +1,7 @@ -CheckResult | @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Interface CheckResult

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            CheckResult represents the results of a call to +CheckResult | @pulumi/pulumi - v3.243.0

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            @pulumi/pulumi - v3.243.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Interface CheckResult

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              CheckResult represents the results of a call to ResourceProvider.check.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              interface CheckResult {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  failures?: provider.CheckFailure[];
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  inputs?: any;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              interface CheckResult {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  failures?: provider.CheckFailure[];
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  inputs?: any;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              failures?: provider.CheckFailure[]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Any validation failures that occurred.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              inputs?: any

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              The inputs to use, if any.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              inputs?: any

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              The inputs to use, if any.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              diff --git a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/provider.ConstructResult.html b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/provider.ConstructResult.html index 98d97d6fad54..07187794d1be 100644 --- a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/provider.ConstructResult.html +++ b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/provider.ConstructResult.html @@ -1,7 +1,7 @@ -ConstructResult | @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Interface ConstructResult

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                ConstructResult represents the results of a call to +ConstructResult | @pulumi/pulumi - v3.243.0

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                @pulumi/pulumi - v3.243.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Interface ConstructResult

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  ConstructResult represents the results of a call to ResourceProvider.construct.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  interface ConstructResult {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      state: Inputs;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      urn: Input<string>;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  interface ConstructResult {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      state: Inputs;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      urn: Input<string>;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  state: Inputs

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Any state that was computed during construction.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  urn: Input<string>

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The URN of the constructed resource.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  urn: Input<string>

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The URN of the constructed resource.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  diff --git a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/provider.CreateResult.html b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/provider.CreateResult.html index ef1c2bd8c1ae..79fce5447d15 100644 --- a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/provider.CreateResult.html +++ b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/provider.CreateResult.html @@ -1,7 +1,7 @@ -CreateResult | @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Interface CreateResult

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    CreateResult represents the results of a call to +CreateResult | @pulumi/pulumi - v3.243.0

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    @pulumi/pulumi - v3.243.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Interface CreateResult

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      CreateResult represents the results of a call to ResourceProvider.create.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      interface CreateResult {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          id: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          outs?: any;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      id +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      interface CreateResult {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          id: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          outs?: any;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      id: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The ID of the created resource.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      outs?: any

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Any properties that were computed during creation.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      outs?: any

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Any properties that were computed during creation.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      diff --git a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/provider.DiffResult.html b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/provider.DiffResult.html index 22e3132608a3..d183d5c910c2 100644 --- a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/provider.DiffResult.html +++ b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/provider.DiffResult.html @@ -1,13 +1,13 @@ -DiffResult | @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Interface DiffResult

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        DiffResult represents the results of a call to +DiffResult | @pulumi/pulumi - v3.243.0

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        @pulumi/pulumi - v3.243.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Interface DiffResult

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          DiffResult represents the results of a call to ResourceProvider.diff.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          interface DiffResult {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              changes?: boolean;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              deleteBeforeReplace?: boolean;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              replaces?: string[];
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              stables?: string[];
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          interface DiffResult {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              changes?: boolean;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              deleteBeforeReplace?: boolean;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              replaces?: string[];
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              stables?: string[];
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          changes?: boolean

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          If true, this diff detected changes and suggests an update.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          deleteBeforeReplace?: boolean

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          If true, and a replacement occurs, the resource will first be deleted +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          deleteBeforeReplace?: boolean

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          If true, and a replacement occurs, the resource will first be deleted before being recreated. This is to avoid potential side-by-side issues with the default create before delete behavior.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          replaces?: string[]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          If this update requires a replacement, the set of properties triggering it.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          stables?: string[]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          An optional list of properties that will not ever change.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          replaces?: string[]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          If this update requires a replacement, the set of properties triggering it.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          stables?: string[]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          An optional list of properties that will not ever change.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          diff --git a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/provider.InvokeResult.html b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/provider.InvokeResult.html index bab94ba92582..59504e2aa5cd 100644 --- a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/provider.InvokeResult.html +++ b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/provider.InvokeResult.html @@ -1,7 +1,7 @@ -InvokeResult | @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Interface InvokeResult

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            InvokeResult represents the results of a call to +InvokeResult | @pulumi/pulumi - v3.243.0

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            @pulumi/pulumi - v3.243.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Interface InvokeResult

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

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

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Properties

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

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              failures?: provider.CheckFailure[]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Any validation failures that occurred.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              outputs?: any

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              The outputs returned by the invoked function, if any.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              outputs?: any

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              The outputs returned by the invoked function, if any.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              diff --git a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/provider.ParameterizeResult.html b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/provider.ParameterizeResult.html index 0703ebeba8f7..abfc51891e58 100644 --- a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/provider.ParameterizeResult.html +++ b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/provider.ParameterizeResult.html @@ -1,9 +1,9 @@ -ParameterizeResult | @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Interface ParameterizeResult

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                ParameterizeResult represents the results of a call to +ParameterizeResult | @pulumi/pulumi - v3.243.0

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                @pulumi/pulumi - v3.243.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  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;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Properties

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

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  name: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The name of the sub-package parameterized.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  version: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The version of the sub-package parameterized.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  version: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The version of the sub-package parameterized.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  diff --git a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/provider.Provider.html b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/provider.Provider.html index 3d53d47b5578..3ccab1890fcd 100644 --- a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/provider.Provider.html +++ b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/provider.Provider.html @@ -1,6 +1,6 @@ -Provider | @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Interface Provider

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Provider represents an object that implements the resources and +Provider | @pulumi/pulumi - v3.243.0

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    @pulumi/pulumi - v3.243.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Interface Provider

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Provider represents an object that implements the resources and functions for a particular Pulumi package.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      interface Provider {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          call?: (token: string, inputs: Inputs) => Promise<InvokeResult>;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          cancel?: () => Promise<void>;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          check?: (
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              urn: string,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              olds: any,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              news: any,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          ) => Promise<provider.CheckResult>;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          construct?: (
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              name: string,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              type: string,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              inputs: Inputs,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              options: ComponentResourceOptions,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          ) => Promise<ConstructResult>;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          create?: (urn: string, inputs: any) => Promise<provider.CreateResult>;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          delete?: (id: string, urn: string, props: any) => Promise<void>;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          diff?: (
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              id: string,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              urn: string,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              olds: any,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              news: any,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          ) => Promise<provider.DiffResult>;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          getSchema?: () => Promise<string>;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          invoke?: (token: string, inputs: any) => Promise<InvokeResult>;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          parameterizeArgs?: (args: string[]) => Promise<ParameterizeResult>;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          parameterizeValue?: (
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              name: string,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              version: string,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              value: string,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          ) => Promise<ParameterizeResult>;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          read?: (
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              id: string,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              urn: string,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              props?: any,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          ) => Promise<provider.ReadResult>;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          schema?: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          update?: (
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              id: string,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              urn: string,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              olds: any,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              news: any,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          ) => Promise<provider.UpdateResult>;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          version?: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      interface Provider {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          call?: (token: string, inputs: Inputs) => Promise<InvokeResult>;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          cancel?: () => Promise<void>;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          check?: (
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              urn: string,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              olds: any,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              news: any,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          ) => Promise<provider.CheckResult>;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          construct?: (
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              name: string,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              type: string,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              inputs: Inputs,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              options: ComponentResourceOptions,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          ) => Promise<ConstructResult>;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          create?: (urn: string, inputs: any) => Promise<provider.CreateResult>;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          delete?: (id: string, urn: string, props: any) => Promise<void>;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          diff?: (
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              id: string,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              urn: string,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              olds: any,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              news: any,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          ) => Promise<provider.DiffResult>;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          getSchema?: () => Promise<string>;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          invoke?: (token: string, inputs: any) => Promise<InvokeResult>;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          parameterizeArgs?: (args: string[]) => Promise<ParameterizeResult>;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          parameterizeValue?: (
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              name: string,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              version: string,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              value: string,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          ) => Promise<ParameterizeResult>;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          read?: (
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              id: string,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              urn: string,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              props?: any,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          ) => Promise<provider.ReadResult>;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          schema?: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          update?: (
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              id: string,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              urn: string,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              olds: any,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              news: any,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          ) => Promise<provider.UpdateResult>;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          version?: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      call? cancel? check? construct? @@ -18,49 +18,49 @@

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      call?: (token: string, inputs: Inputs) => Promise<InvokeResult>

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Calls the indicated method.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Type Declaration

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • (token: string, inputs: Inputs): Promise<InvokeResult>
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • Parameters

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • token: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            The token of the method to call.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • inputs: Inputs

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            The inputs to the method.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Returns Promise<InvokeResult>

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      cancel?: () => Promise<void>

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Signals the provider to gracefully shut down and abort any ongoing operations.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      check?: (urn: string, olds: any, news: any) => Promise<provider.CheckResult>

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Validates that the given property bag is valid for a resource of the +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Returns Promise<InvokeResult>

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      cancel?: () => Promise<void>

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Signals the provider to gracefully shut down and abort any ongoing operations.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      check?: (urn: string, olds: any, news: any) => Promise<provider.CheckResult>

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Validates that the given property bag is valid for a resource of the given type.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Type Declaration

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • (urn: string, olds: any, news: any): Promise<provider.CheckResult>
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • Parameters

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • urn: string
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • olds: any

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            The old input properties to use for validation.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • news: any

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            The new input properties to use for validation.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Returns Promise<provider.CheckResult>

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      construct?: (
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          name: string,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          type: string,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          inputs: Inputs,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          options: ComponentResourceOptions,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      ) => Promise<ConstructResult>

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Creates a new component resource.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Returns Promise<provider.CheckResult>

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      construct?: (
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          name: string,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          type: string,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          inputs: Inputs,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          options: ComponentResourceOptions,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      ) => Promise<ConstructResult>

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Creates a new component resource.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Type Declaration

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      create?: (urn: string, inputs: any) => Promise<provider.CreateResult>

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Allocates a new instance of the provided resource and returns its unique +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Returns Promise<ConstructResult>

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      create?: (urn: string, inputs: any) => Promise<provider.CreateResult>

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Allocates a new instance of the provided resource and returns its unique ID afterwards. If this call fails, the resource must not have been created (i.e., it is "transactional").

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Type Declaration

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      delete?: (id: string, urn: string, props: any) => Promise<void>

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Tears down an existing resource with the given ID. If it fails, the +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Returns Promise<provider.CreateResult>

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      delete?: (id: string, urn: string, props: any) => Promise<void>

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Tears down an existing resource with the given ID. If it fails, the resource is assumed to still exist.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Type Declaration

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      diff?: (
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          id: string,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          urn: string,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          olds: any,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          news: any,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      ) => Promise<provider.DiffResult>

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Checks what impacts a hypothetical update will have on the resource's properties.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Returns Promise<void>

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      diff?: (
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          id: string,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          urn: string,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          olds: any,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          news: any,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      ) => Promise<provider.DiffResult>

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Checks what impacts a hypothetical update will have on the resource's properties.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Type Declaration

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      getSchema?: () => Promise<string>

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Gets the JSON-encoded schema for this provider's package. +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Returns Promise<provider.DiffResult>

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      getSchema?: () => Promise<string>

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Gets the JSON-encoded schema for this provider's package. Implementations can lazily load or generate the schema when needed.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Type Declaration

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      invoke?: (token: string, inputs: any) => Promise<InvokeResult>

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Calls the indicated function.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      invoke?: (token: string, inputs: any) => Promise<InvokeResult>

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Calls the indicated function.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Type Declaration

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      parameterizeArgs?: (args: string[]) => Promise<ParameterizeResult>

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Parameterizes a sub-package.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Returns Promise<InvokeResult>

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      parameterizeArgs?: (args: string[]) => Promise<ParameterizeResult>

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Parameterizes a sub-package.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Type Declaration

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      parameterizeValue?: (
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          name: string,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          version: string,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          value: string,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      ) => Promise<ParameterizeResult>

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Parameterizes a sub-package.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Returns Promise<ParameterizeResult>

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      parameterizeValue?: (
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          name: string,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          version: string,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          value: string,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      ) => Promise<ParameterizeResult>

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Parameterizes a sub-package.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Type Declaration

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      read?: (id: string, urn: string, props?: any) => Promise<provider.ReadResult>

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Reads the current live state associated with a resource. Enough state +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Returns Promise<ParameterizeResult>

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      read?: (id: string, urn: string, props?: any) => Promise<provider.ReadResult>

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Reads the current live state associated with a resource. Enough state must be included in the inputs to uniquely identify the resource; this is typically just the resource ID, but it may also include some properties.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      schema?: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The JSON-encoded schema for this provider's package.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      update?: (
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          id: string,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          urn: string,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          olds: any,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          news: any,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      ) => Promise<provider.UpdateResult>

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Update updates an existing resource with new values.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      schema?: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The JSON-encoded schema for this provider's package.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      update?: (
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          id: string,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          urn: string,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          olds: any,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          news: any,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      ) => Promise<provider.UpdateResult>

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Update updates an existing resource with new values.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Type Declaration

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      version?: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The version of the provider. Must be valid semver.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Returns Promise<provider.UpdateResult>

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      version?: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The version of the provider. Must be valid semver.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      diff --git a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/provider.ReadResult.html b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/provider.ReadResult.html index fad8a32b3779..e6abfd1b29e9 100644 --- a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/provider.ReadResult.html +++ b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/provider.ReadResult.html @@ -1,9 +1,9 @@ -ReadResult | @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Interface ReadResult

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        ReadResult represents the results of a call to +ReadResult | @pulumi/pulumi - v3.243.0

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        @pulumi/pulumi - v3.243.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Interface ReadResult

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          ReadResult represents the results of a call to ResourceProvider.read.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          interface ReadResult {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              id?: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              inputs?: any;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              props?: any;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          id? +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          interface ReadResult {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              id?: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              inputs?: any;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              props?: any;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          id?: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The ID of the resource ready back (or blank if missing).

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          inputs?: any

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The inputs that would lead to the current resource state when importing it.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          props?: any

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The current property state read from the live environment.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          inputs?: any

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The inputs that would lead to the current resource state when importing it.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          props?: any

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The current property state read from the live environment.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          diff --git a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/provider.UpdateResult.html b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/provider.UpdateResult.html index dd0141270e3c..c1c7a350a147 100644 --- a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/provider.UpdateResult.html +++ b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/provider.UpdateResult.html @@ -1,5 +1,5 @@ -UpdateResult | @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Interface UpdateResult

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            UpdateResult represents the results of a call to +UpdateResult | @pulumi/pulumi - v3.243.0

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            @pulumi/pulumi - v3.243.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Interface UpdateResult

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              UpdateResult represents the results of a call to ResourceProvider.update.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              interface UpdateResult {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  outs?: any;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              interface UpdateResult {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  outs?: any;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              outs?: any

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Any properties that were computed during updating.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              diff --git a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/runtime.CodePathOptions.html b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/runtime.CodePathOptions.html index 2acaa0b1596b..d50bf6e6b588 100644 --- a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/runtime.CodePathOptions.html +++ b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/runtime.CodePathOptions.html @@ -1,5 +1,5 @@ -CodePathOptions | @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Interface CodePathOptions

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Options for controlling what gets returned by computeCodePaths.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                interface CodePathOptions {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    extraExcludePackages?: string[];
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    extraIncludePackages?: string[];
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    extraIncludePaths?: string[];
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    logResource?: Resource;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                extraExcludePackages? +CodePathOptions | @pulumi/pulumi - v3.243.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                @pulumi/pulumi - v3.243.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Interface CodePathOptions

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Options for controlling what gets returned by computeCodePaths.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  interface CodePathOptions {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      extraExcludePackages?: string[];
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      extraIncludePackages?: string[];
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      extraIncludePaths?: string[];
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      logResource?: Resource;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  extraExcludePackages? extraIncludePackages? extraIncludePaths? logResource? @@ -7,11 +7,11 @@ This can be used when clients want to trim down the size of a closure, and they know that some package won't ever actually be needed at runtime, but is still a dependency of some package that is being used at runtime.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  extraIncludePackages?: string[]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Extra packages to include when producing the assets for a serialized +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  extraIncludePackages?: string[]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Extra packages to include when producing the assets for a serialized closure. This can be useful if the packages are acquired in a way that the serialization code does not understand. For example, if there was some sort of module that was pulled in based off of a computed string.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  extraIncludePaths?: string[]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Local file/directory paths that we always want to include when producing +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  extraIncludePaths?: string[]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Local file/directory paths that we always want to include when producing the assets to be included for a serialized closure.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  logResource?: Resource

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The resource to log any errors we encounter against.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  logResource?: Resource

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The resource to log any errors we encounter against.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  diff --git a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/runtime.MockCallArgs.html b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/runtime.MockCallArgs.html index 29f97ef2416b..5059041ece88 100644 --- a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/runtime.MockCallArgs.html +++ b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/runtime.MockCallArgs.html @@ -1,10 +1,10 @@ -MockCallArgs | @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Interface MockCallArgs

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    MockResourceArgs is used to construct call mocks.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    interface MockCallArgs {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        inputs: any;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        provider?: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        token: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    inputs +MockCallArgs | @pulumi/pulumi - v3.243.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    @pulumi/pulumi - v3.243.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Interface MockCallArgs

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      MockResourceArgs is used to construct call mocks.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      interface MockCallArgs {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          inputs: any;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          provider?: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          token: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      inputs: any

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The arguments provided to the function call.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      provider?: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      If provided, the identifier of the provider instance being used to make +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      provider?: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      If provided, the identifier of the provider instance being used to make the call.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      token: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The token that indicates which function is being called. This token is of +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      token: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The token that indicates which function is being called. This token is of the form "package:module:function".

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      diff --git a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/runtime.MockResourceArgs.html b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/runtime.MockResourceArgs.html index 6a30c5186086..fe2ab837fe4b 100644 --- a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/runtime.MockResourceArgs.html +++ b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/runtime.MockResourceArgs.html @@ -1,5 +1,5 @@ -MockResourceArgs | @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Interface MockResourceArgs

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        MockResourceArgs is used to construct a new resource mock.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        interface MockResourceArgs {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            custom?: boolean;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            id?: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            inputs: any;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            name: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            provider?: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            type: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        custom? +MockResourceArgs | @pulumi/pulumi - v3.243.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        @pulumi/pulumi - v3.243.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Interface MockResourceArgs

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          MockResourceArgs is used to construct a new resource mock.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          interface MockResourceArgs {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              custom?: boolean;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              id?: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              inputs: any;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              name: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              provider?: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              type: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          custom? id? inputs name @@ -7,12 +7,12 @@ type

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          custom?: boolean

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Specifies whether or not the resource is Custom (i.e. managed by a resource provider).

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          id?: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          If provided, the physical identifier of an existing resource to read or +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          id?: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          If provided, the physical identifier of an existing resource to read or import.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          inputs: any

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The inputs for the resource.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          name: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The logical name of the resource instance.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          provider?: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          If provided, the identifier of the provider instance being used to manage +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          inputs: any

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The inputs for the resource.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          name: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The logical name of the resource instance.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          provider?: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          If provided, the identifier of the provider instance being used to manage this resource.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          type: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The token that indicates which resource type is being constructed. This +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          type: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The token that indicates which resource type is being constructed. This token is of the form "package:module:type".

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          diff --git a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/runtime.Mocks.html b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/runtime.Mocks.html index 2c469de05431..793a0c87c669 100644 --- a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/runtime.Mocks.html +++ b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/runtime.Mocks.html @@ -1,13 +1,13 @@ -Mocks | @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Interface Mocks

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Mocks allows implementations to replace operations normally +Mocks | @pulumi/pulumi - v3.243.0

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            @pulumi/pulumi - v3.243.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Interface Mocks

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Mocks allows implementations to replace operations normally implemented by the Pulumi engine with their own implementations. This can be used during testing to ensure that calls to provider functions and resource constructors return predictable values.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              interface Mocks {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  call(args: MockCallArgs): MockCallResult | Promise<MockCallResult>;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  newResource(
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      args: MockResourceArgs,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  ): MockResourceResult | Promise<MockResourceResult>;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Methods

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              interface Mocks {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  call(args: MockCallArgs): MockCallResult | Promise<MockCallResult>;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  newResource(
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      args: MockResourceArgs,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  ): MockResourceResult | Promise<MockResourceResult>;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Methods

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Returns MockCallResult | Promise<MockCallResult>

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Returns MockResourceResult | Promise<MockResourceResult>

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              diff --git a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/runtime.Options.html b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/runtime.Options.html index d955c88c3866..161e4bde2cee 100644 --- a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/runtime.Options.html +++ b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/runtime.Options.html @@ -1,6 +1,6 @@ -Options | @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Interface Options

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Options is a bag of settings that controls the behavior of previews +Options | @pulumi/pulumi - v3.243.0

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                @pulumi/pulumi - v3.243.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Interface Options

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Options is a bag of settings that controls the behavior of previews and deployments.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  interface Options {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      cacheDynamicProviders?: boolean;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      dryRun?: boolean;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      engineAddr?: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      legacyApply?: boolean;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      monitorAddr?: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      organization?: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      parallel?: number;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      project?: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      rootDirectory?: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      stack?: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      syncDir?: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      testModeEnabled?: boolean;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  interface Options {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      cacheDynamicProviders?: boolean;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      dryRun?: boolean;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      engineAddr?: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      legacyApply?: boolean;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      monitorAddr?: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      organization?: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      parallel?: number;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      project?: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      rootDirectory?: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      stack?: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      syncDir?: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      testModeEnabled?: boolean;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  cacheDynamicProviders?: boolean

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  True if we will cache serialized dynamic providers on the program side.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  dryRun?: boolean

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Whether we are performing a preview (true) or a real deployment (false).

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  engineAddr?: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  A connection string to the engine's RPC, in case we need to reestablish.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  legacyApply?: boolean

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  True if we will resolve missing outputs to inputs during preview.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  monitorAddr?: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  A connection string to the monitor's RPC, in case we need to reestablish.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  organization?: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The name of the current organization.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  parallel?: number

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The degree of parallelism for resource operations (default is serial).

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  project?: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The name of the current project.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  rootDirectory?: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The root directory of the current project. This is the location of the Pulumi.yaml file.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  stack?: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The name of the current stack being deployed into.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  syncDir?: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  A directory containing the send/receive files for making synchronous +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  dryRun?: boolean

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Whether we are performing a preview (true) or a real deployment (false).

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  engineAddr?: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  A connection string to the engine's RPC, in case we need to reestablish.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  legacyApply?: boolean

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  True if we will resolve missing outputs to inputs during preview.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  monitorAddr?: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  A connection string to the monitor's RPC, in case we need to reestablish.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  organization?: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The name of the current organization.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  parallel?: number

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The degree of parallelism for resource operations (default is serial).

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  project?: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The name of the current project.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  rootDirectory?: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The root directory of the current project. This is the location of the Pulumi.yaml file.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  stack?: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The name of the current stack being deployed into.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  syncDir?: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  A directory containing the send/receive files for making synchronous invokes to the engine.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  testModeEnabled?: boolean

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  True if we're in testing mode (allows execution without the CLI).

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  testModeEnabled?: boolean

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  True if we're in testing mode (allows execution without the CLI).

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  diff --git a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/runtime.RegisterPackageArgs.html b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/runtime.RegisterPackageArgs.html index 80d097cb603a..d3710ec92755 100644 --- a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/runtime.RegisterPackageArgs.html +++ b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/runtime.RegisterPackageArgs.html @@ -1,8 +1,8 @@ -RegisterPackageArgs | @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Interface RegisterPackageArgs

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Arguments for registerPackage.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    interface RegisterPackageArgs {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        base64Parameter: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        baseProviderDownloadUrl: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        baseProviderName: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        baseProviderVersion: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        packageName: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        packageVersion: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    base64Parameter +RegisterPackageArgs | @pulumi/pulumi - v3.243.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    @pulumi/pulumi - v3.243.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Interface RegisterPackageArgs

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Arguments for registerPackage.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      interface RegisterPackageArgs {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          base64Parameter: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          baseProviderDownloadUrl: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          baseProviderName: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          baseProviderVersion: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          packageName: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          packageVersion: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      base64Parameter: string
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      baseProviderDownloadUrl: string
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      baseProviderName: string
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      baseProviderVersion: string
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      packageName: string
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      packageVersion: string
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      base64Parameter: string
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      baseProviderDownloadUrl: string
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      baseProviderName: string
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      baseProviderVersion: string
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      packageName: string
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      packageVersion: string
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      diff --git a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/runtime.ResourceModule.html b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/runtime.ResourceModule.html index 52d4517fbfc2..f1f1c74bbf3b 100644 --- a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/runtime.ResourceModule.html +++ b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/runtime.ResourceModule.html @@ -1,5 +1,5 @@ -ResourceModule | @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Interface ResourceModule

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        A ResourceModule is a type that understands how to construct +ResourceModule | @pulumi/pulumi - v3.243.0

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        @pulumi/pulumi - v3.243.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Interface ResourceModule

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          A ResourceModule is a type that understands how to construct resources given a name, type, args, and URN.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          interface ResourceModule {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              version?: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              construct(name: string, type: string, urn: string): Resource;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          interface ResourceModule {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              version?: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              construct(name: string, type: string, urn: string): Resource;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Methods

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          version?: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Methods

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          version?: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Methods

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          diff --git a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/runtime.ResourcePackage.html b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/runtime.ResourcePackage.html index 040eef6c3d2b..5b4e42a300cb 100644 --- a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/runtime.ResourcePackage.html +++ b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/runtime.ResourcePackage.html @@ -1,5 +1,5 @@ -ResourcePackage | @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Interface ResourcePackage

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            A ResourcePackage is a type that understands how to construct +ResourcePackage | @pulumi/pulumi - v3.243.0

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            @pulumi/pulumi - v3.243.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Interface ResourcePackage

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              A ResourcePackage is a type that understands how to construct resource providers given a name, type, args, and URN.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              interface ResourcePackage {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  version?: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  constructProvider(
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      name: string,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      type: string,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      urn: string,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  ): ProviderResource;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              interface ResourcePackage {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  version?: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  constructProvider(
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      name: string,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      type: string,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      urn: string,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  ): ProviderResource;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Methods

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              version?: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Methods

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              version?: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Methods

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              diff --git a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/runtime.SerializationOptions.html b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/runtime.SerializationOptions.html index 36a4dc61d40a..b265c0796e85 100644 --- a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/runtime.SerializationOptions.html +++ b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/runtime.SerializationOptions.html @@ -1,11 +1,11 @@ -SerializationOptions | @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Interface SerializationOptions

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Controls the serialization of RPC structures.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                interface SerializationOptions {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    excludeResourceReferencesFromDependencies?: boolean;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    keepOutputValues?: boolean;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                excludeResourceReferencesFromDependencies? +SerializationOptions | @pulumi/pulumi - v3.243.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                @pulumi/pulumi - v3.243.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Interface SerializationOptions

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Controls the serialization of RPC structures.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  interface SerializationOptions {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      excludeResourceReferencesFromDependencies?: boolean;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      keepOutputValues?: boolean;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  excludeResourceReferencesFromDependencies?: boolean

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  True if we should exclude resource references from the set of dependencies identified during serialization. This is useful for remote components where we want propertyDependencies to be empty for a property that only contains resource references. If the monitor does not support resource references, this will have no effect.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  keepOutputValues?: boolean

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  True if we are keeping output values. If the monitor does not support +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  keepOutputValues?: boolean

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  True if we are keeping output values. If the monitor does not support output values, they will not be kept, even when this is set to true.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  diff --git a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/runtime.SerializeFunctionArgs.html b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/runtime.SerializeFunctionArgs.html index 19f113d5006c..e56ba9ac187f 100644 --- a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/runtime.SerializeFunctionArgs.html +++ b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/runtime.SerializeFunctionArgs.html @@ -1,6 +1,6 @@ -SerializeFunctionArgs | @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Interface SerializeFunctionArgs

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    SerializeFunctionArgs are arguments used to serialize a JavaScript +SerializeFunctionArgs | @pulumi/pulumi - v3.243.0

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    @pulumi/pulumi - v3.243.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Interface SerializeFunctionArgs

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      SerializeFunctionArgs are arguments used to serialize a JavaScript function.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      interface SerializeFunctionArgs {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          allowSecrets?: boolean;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          exportName?: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          isFactoryFunction?: boolean;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          logResource?: Resource;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          serialize?: (o: any) => boolean;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      interface SerializeFunctionArgs {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          allowSecrets?: boolean;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          exportName?: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          isFactoryFunction?: boolean;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          logResource?: Resource;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          serialize?: (o: any) => boolean;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      allowSecrets? exportName? isFactoryFunction? logResource? @@ -12,16 +12,16 @@ containsSecrets property on the returned SerializedFunction object will indicate whether secrets were serialized into the function text.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      exportName?: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The name to export from the module defined by the generated module text. +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      exportName?: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The name to export from the module defined by the generated module text. Defaults to handler.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      isFactoryFunction?: boolean

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      True if this is a function which, when invoked, will produce the actual +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      isFactoryFunction?: boolean

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      True if this is a function which, when invoked, will produce the actual entrypoint function. Useful for when serializing a function that has high startup cost that we'd ideally only run once. The signature of this function should be () => (provider_handler_args...) => provider_result.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      This will then be emitted as exports.[exportName] = serialized_func_name();

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      In other words, the function will be invoked (once) and the resulting inner function will be what is exported.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      logResource?: Resource

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The resource to log any errors we encounter against.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      serialize?: (o: any) => boolean

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      A function to prevent serialization of certain objects captured during +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      logResource?: Resource

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      The resource to log any errors we encounter against.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      serialize?: (o: any) => boolean

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      A function to prevent serialization of certain objects captured during the serialization. Primarily used to prevent potential cycles.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      diff --git a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/runtime.SerializedFunction.html b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/runtime.SerializedFunction.html index 481a69c86521..7bf075770460 100644 --- a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/runtime.SerializedFunction.html +++ b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/runtime.SerializedFunction.html @@ -1,12 +1,12 @@ -SerializedFunction | @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Interface SerializedFunction

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        SerializedFunction is a representation of a serialized JavaScript +SerializedFunction | @pulumi/pulumi - v3.243.0

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        @pulumi/pulumi - v3.243.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Interface SerializedFunction

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          SerializedFunction is a representation of a serialized JavaScript function.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          interface SerializedFunction {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              containsSecrets: boolean;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              exportName: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              text: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          interface SerializedFunction {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              containsSecrets: boolean;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              exportName: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              text: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          containsSecrets: boolean

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          True if the serialized function text includes serialized secrets.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          exportName: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The name of the exported module member.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          text: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The text of a JavaScript module which exports a single name bound to an +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          exportName: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The name of the exported module member.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          text: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          The text of a JavaScript module which exports a single name bound to an appropriate value. In the case of a normal function, this value will just be serialized function. In the case of a factory function this value will be the result of invoking the factory function.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          diff --git a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/runtime.SourcePosition.html b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/runtime.SourcePosition.html index 1a68362a9005..7116e48ad8ca 100644 --- a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/runtime.SourcePosition.html +++ b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/interfaces/runtime.SourcePosition.html @@ -1,4 +1,4 @@ -SourcePosition | @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Interface SourcePosition

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            interface SourcePosition {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                column: number;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                line: number;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                uri: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            column +SourcePosition | @pulumi/pulumi - v3.243.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            @pulumi/pulumi - v3.243.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Interface SourcePosition

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              interface SourcePosition {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  column: number;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  line: number;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  uri: string;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              column: number
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              line: number
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              uri: string
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              column: number
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              line: number
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              uri: string
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              diff --git a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/modules.html b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/modules.html index b8848320a4a9..6f793d1861c9 100644 --- a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/modules.html +++ b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/modules.html @@ -1 +1 @@ -@pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  @pulumi/pulumi - v3.242.0

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Namespaces

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  asset
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  automation
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  dynamic
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  iterable
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  log
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  provider
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  runtime
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  utils

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Classes

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  ComponentResource
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Config
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  CustomResource
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  DependencyProviderResource
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  DependencyResource
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  ErrorHook
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  InputPropertiesError
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  InputPropertyError
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  ProviderResource
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Resource
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  ResourceError
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  ResourceHook
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  RunError
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  StackReference
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Stash

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Interfaces

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Alias
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  ComponentResourceOptions
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  CustomResourceOptions
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  CustomTimeouts
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  ErrorHookArgs
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  InputPropertyErrorDetails
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  InvokeOptions
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  InvokeOutputOptions
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  InvokeTransformArgs
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  InvokeTransformResult
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  NumberConfigOptions
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  OutputConstructor
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  OutputInstance
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  ResourceHookArgs
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  ResourceHookBinding
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  ResourceHookOptions
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  ResourceOptions
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  ResourceTransformArgs
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  ResourceTransformationArgs
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  ResourceTransformationResult
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  ResourceTransformResult
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  StackReferenceArgs
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  StackReferenceOutputDetails
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  StashArgs
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  StringConfigOptions

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Type Aliases

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  ErrorHookFunction
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  ID
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Input
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Inputs
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  InvokeTransform
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Lifted
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  LiftedArray
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  LiftedObject
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Output
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  ResourceHookFunction
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  ResourceTransform
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  ResourceTransformation
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Unwrap
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  UnwrappedArray
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  UnwrappedObject
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  UnwrapSimple
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  URN

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Variables

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Output
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  rootStackResource
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  unknown

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Functions

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  all
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  allAliases
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  concat
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  containsUnknowns
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  createUrn
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  deferredOutput
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  getAllResources
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  getOrganization
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  getProject
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  getRootDirectory
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  getStack
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  interpolate
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  isGrpcError
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  isSecret
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  isUnknown
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  jsonParse
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  jsonStringify
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  mergeOptions
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  output
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  requirePulumiVersion
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  resourceName
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  resourceType
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  secret
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  unsecret
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +@pulumi/pulumi - v3.243.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  @pulumi/pulumi - v3.243.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      @pulumi/pulumi - v3.243.0

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Namespaces

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      asset
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      automation
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      dynamic
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      iterable
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      log
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      provider
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      runtime
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      utils

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Classes

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      ComponentResource
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Config
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      CustomResource
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      DependencyProviderResource
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      DependencyResource
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      ErrorHook
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      InputPropertiesError
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      InputPropertyError
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      ProviderResource
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Resource
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      ResourceError
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      ResourceHook
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      RunError
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      StackReference
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Stash

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Interfaces

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Alias
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      ComponentResourceOptions
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      CustomResourceOptions
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      CustomTimeouts
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      ErrorHookArgs
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      InputPropertyErrorDetails
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      InvokeOptions
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      InvokeOutputOptions
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      InvokeTransformArgs
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      InvokeTransformResult
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      NumberConfigOptions
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      OutputConstructor
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      OutputInstance
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      ResourceHookArgs
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      ResourceHookBinding
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      ResourceHookOptions
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      ResourceOptions
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      ResourceTransformArgs
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      ResourceTransformationArgs
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      ResourceTransformationResult
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      ResourceTransformResult
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      StackReferenceArgs
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      StackReferenceOutputDetails
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      StashArgs
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      StringConfigOptions

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Type Aliases

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      ErrorHookFunction
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      ID
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Input
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Inputs
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      InvokeTransform
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Lifted
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      LiftedArray
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      LiftedObject
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Output
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      ResourceHookFunction
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      ResourceTransform
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      ResourceTransformation
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Unwrap
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      UnwrappedArray
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      UnwrappedObject
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      UnwrapSimple
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      URN

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Variables

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Output
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      rootStackResource
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      unknown

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Functions

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      all
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      allAliases
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      concat
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      containsUnknowns
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      createUrn
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      deferredOutput
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      getAllResources
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      getOrganization
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      getProject
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      getRootDirectory
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      getStack
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      interpolate
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      isGrpcError
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      isSecret
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      isUnknown
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      jsonParse
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      jsonStringify
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      mergeOptions
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      output
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      requirePulumiVersion
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      resourceName
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      resourceType
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      secret
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      unsecret
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      diff --git a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/modules/asset.html b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/modules/asset.html index 8b59df32f5e4..33932a6b4fe5 100644 --- a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/modules/asset.html +++ b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/modules/asset.html @@ -1 +1 @@ -asset | @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Namespace asset

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Classes

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Archive
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Asset
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        AssetArchive
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        FileArchive
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        FileAsset
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        RemoteArchive
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        RemoteAsset
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        StringAsset

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Type Aliases

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        AssetMap
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +asset | @pulumi/pulumi - v3.243.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        @pulumi/pulumi - v3.243.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Namespace asset

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Classes

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Archive
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Asset
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          AssetArchive
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          FileArchive
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          FileAsset
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          RemoteArchive
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          RemoteAsset
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          StringAsset

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Type Aliases

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          AssetMap
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          diff --git a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/modules/automation.html b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/modules/automation.html index 6ef391025137..e4c69ee5c4e4 100644 --- a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/modules/automation.html +++ b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/modules/automation.html @@ -1 +1 @@ -automation | @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Namespace automation

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Enumerations

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            DiffKind

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Classes

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            CommandError
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            ConcurrentUpdateError
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            LocalWorkspace
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            PulumiCommand
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            RemoteStack
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            RemoteWorkspace
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Stack
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            StackAlreadyExistsError
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            StackNotFoundError

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Interfaces

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            ConfigValue
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Deployment
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            DestroyOptions
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            DestroyResult
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            DiagnosticEvent
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            DockerImageCredentials
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            EngineEvent
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            ExecutorImage
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            GlobalOpts
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            ImportOptions
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            ImportResource
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            ImportResult
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            InlineProgramArgs
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            InstallOptions
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            ListOptions
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            LocalProgramArgs
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            LocalWorkspaceOptions
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            OutputValue
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            PluginInfo
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            PolicyEvent
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            PreludeEvent
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            PreviewOptions
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            PreviewResult
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            ProjectBackend
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            ProjectRuntimeInfo
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            ProjectSettings
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            ProjectTemplate
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            ProjectTemplateConfigValue
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            PropertyDiff
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            PulumiCommandOptions
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            RefreshOptions
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            RefreshResult
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            RemoteDestroyOptions
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            RemoteGitAuthArgs
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            RemoteGitProgramArgs
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            RemotePreviewOptions
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            RemoteRefreshOptions
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            RemoteUpOptions
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            RemoteWorkspaceOptions
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            RemoveOptions
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            RenameOptions
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            RenameResult
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            ResOpFailedEvent
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            ResourcePreEvent
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            ResOutputsEvent
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            StackSettings
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            StackSettingsSecureConfigValue
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            StackSummary
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            StartDebuggingEvent
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            StdoutEngineEvent
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            StepEventMetadata
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            StepEventStateMetadata
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            SummaryEvent
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            TokenInfomation
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            UpdateSummary
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            UpOptions
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            UpResult
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            WhoAmIResult
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Workspace

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Type Aliases

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            CancelEvent
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            ConfigMap
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            OpMap
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            OpType
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            OutputMap
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            PluginKind
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            ProjectRuntime
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            PulumiFn
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            RawJSON
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            StackSettingsConfigValue
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            TagMap
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            UpdateKind
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            UpdateResult

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Functions

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            fullyQualifiedStackName
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +automation | @pulumi/pulumi - v3.243.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            @pulumi/pulumi - v3.243.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Namespace automation

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Enumerations

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              DiffKind

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Classes

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              CommandError
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              ConcurrentUpdateError
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              LocalWorkspace
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              PulumiCommand
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              RemoteStack
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              RemoteWorkspace
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Stack
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              StackAlreadyExistsError
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              StackNotFoundError

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Interfaces

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              ConfigValue
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Deployment
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              DestroyOptions
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              DestroyResult
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              DiagnosticEvent
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              DockerImageCredentials
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              EngineEvent
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              ExecutorImage
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              GlobalOpts
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              ImportOptions
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              ImportResource
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              ImportResult
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              InlineProgramArgs
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              InstallOptions
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              ListOptions
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              LocalProgramArgs
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              LocalWorkspaceOptions
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              OutputValue
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              PluginInfo
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              PolicyEvent
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              PreludeEvent
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              PreviewOptions
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              PreviewResult
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              ProjectBackend
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              ProjectRuntimeInfo
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              ProjectSettings
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              ProjectTemplate
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              ProjectTemplateConfigValue
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              PropertyDiff
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              PulumiCommandOptions
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              RefreshOptions
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              RefreshResult
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              RemoteDestroyOptions
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              RemoteGitAuthArgs
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              RemoteGitProgramArgs
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              RemotePreviewOptions
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              RemoteRefreshOptions
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              RemoteUpOptions
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              RemoteWorkspaceOptions
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              RemoveOptions
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              RenameOptions
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              RenameResult
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              ResOpFailedEvent
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              ResourcePreEvent
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              ResOutputsEvent
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              StackSettings
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              StackSettingsSecureConfigValue
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              StackSummary
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              StartDebuggingEvent
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              StdoutEngineEvent
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              StepEventMetadata
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              StepEventStateMetadata
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              SummaryEvent
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              TokenInfomation
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              UpdateSummary
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              UpOptions
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              UpResult
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              WhoAmIResult
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Workspace

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Type Aliases

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              CancelEvent
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              ConfigMap
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              OpMap
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              OpType
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              OutputMap
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              PluginKind
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              ProjectRuntime
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              PulumiFn
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              RawJSON
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              StackSettingsConfigValue
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              TagMap
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              UpdateKind
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              UpdateResult

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Functions

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              fullyQualifiedStackName
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              diff --git a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/modules/dynamic.html b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/modules/dynamic.html index 03afde95d3e8..bd7f340a512a 100644 --- a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/modules/dynamic.html +++ b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/modules/dynamic.html @@ -1 +1 @@ -dynamic | @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Namespace dynamic

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Classes

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Resource

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Interfaces

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                CheckFailure
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                CheckResult
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Config
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                ConfigureRequest
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                CreateResult
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                DiffResult
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                ReadResult
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                ResourceProvider
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                UpdateResult
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +dynamic | @pulumi/pulumi - v3.243.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                @pulumi/pulumi - v3.243.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Namespace dynamic

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Classes

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Resource

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Interfaces

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  CheckFailure
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  CheckResult
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Config
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  ConfigureRequest
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  CreateResult
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  DiffResult
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  ReadResult
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  ResourceProvider
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  UpdateResult
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  diff --git a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/modules/iterable.html b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/modules/iterable.html index d1f46fa5300d..8810335f817e 100644 --- a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/modules/iterable.html +++ b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/modules/iterable.html @@ -1 +1 @@ -iterable | @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Namespace iterable

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Functions

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    groupBy
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    toObject
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +iterable | @pulumi/pulumi - v3.243.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    @pulumi/pulumi - v3.243.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Namespace iterable

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Functions

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      groupBy
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      toObject
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      diff --git a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/modules/log.html b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/modules/log.html index 768067a86f52..1b6851469034 100644 --- a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/modules/log.html +++ b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/modules/log.html @@ -1 +1 @@ -log | @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Namespace log

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Functions

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        debug
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        error
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        hasErrors
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        info
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        warn
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +log | @pulumi/pulumi - v3.243.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        @pulumi/pulumi - v3.243.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Namespace log

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Functions

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          debug
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          error
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          hasErrors
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          info
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          warn
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          diff --git a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/modules/provider.html b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/modules/provider.html index 0928812dfa9b..779c7314fd87 100644 --- a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/modules/provider.html +++ b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/modules/provider.html @@ -1 +1 @@ -provider | @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Namespace provider

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Interfaces

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            CheckFailure
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            CheckResult
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            ConstructResult
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            CreateResult
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            DiffResult
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            InvokeResult
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            ParameterizeResult
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Provider
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            ReadResult
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            UpdateResult

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Functions

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            main
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +provider | @pulumi/pulumi - v3.243.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            @pulumi/pulumi - v3.243.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Namespace provider

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Interfaces

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              CheckFailure
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              CheckResult
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              ConstructResult
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              CreateResult
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              DiffResult
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              InvokeResult
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              ParameterizeResult
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Provider
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              ReadResult
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              UpdateResult

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Functions

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              main
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              diff --git a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/modules/runtime.html b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/modules/runtime.html index 3f5127252430..64738a150c88 100644 --- a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/modules/runtime.html +++ b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/modules/runtime.html @@ -1 +1 @@ -runtime | @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Namespace runtime

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Classes

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Stack

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Interfaces

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                CodePathOptions
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                MockCallArgs
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                MockResourceArgs
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Mocks
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Options
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                RegisterPackageArgs
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                ResourceModule
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                ResourcePackage
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                SerializationOptions
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                SerializedFunction
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                SerializeFunctionArgs
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                SourcePosition

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Type Aliases

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                MockCallResult
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                MockResourceResult
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                OutputResolvers

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Variables

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                excessiveDebugOutput
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                rootPulumiStackTypeName
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                specialArchiveSig
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                specialAssetSig
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                specialOutputValueSig
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                specialResourceSig
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                specialSecretSig
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                specialSigKey
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                unknownValue

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Functions

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                allConfig
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                awaitStackRegistrations
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                cacheDynamicProviders
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                call
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                callSingle
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                computeCodePaths
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                deserializeProperties
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                deserializeProperty
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                disconnect
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                disconnectSync
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                getCallbacks
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                getConfig
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                getEngine
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                getMaximumListeners
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                getMonitor
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                getOrganization
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                getProject
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                getResource
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                getResourceModule
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                getResourcePackage
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                getRootDirectory
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                getStack
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                getStackResource
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                hasEngine
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                hasMonitor
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                invoke
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                invokeOutput
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                invokeSingle
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                invokeSingleOutput
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                isDryRun
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                isLegacyApplyEnabled
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                isRpcSecret
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                mapAliasesForRequest
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                readResource
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                registerErrorHook
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                registerInvokeTransform
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                registerPackage
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                registerResource
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                registerResourceHook
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                registerResourceModule
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                registerResourceOutputs
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                registerResourcePackage
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                registerResourceTransform
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                registerStackTransform
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                registerStackTransformation
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                requirePulumiVersion
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                resetOptions
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                resolveProperties
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                rpcKeepAlive
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                runInPulumiStack
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                serialize
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                serializeFunction
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                serializeFunctionAsync
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                serializeProperties
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                serializeProperty
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                serializeResourceProperties
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                setAllConfig
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                setConfig
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                setMockOptions
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                setMocks
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                setRootResource
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                supportsParameterization
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                suppressUnhandledGrpcRejections
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                terminateRpcs
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                transferProperties
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                unwrapRpcSecret
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +runtime | @pulumi/pulumi - v3.243.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                @pulumi/pulumi - v3.243.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Namespace runtime

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Classes

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Stack

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Interfaces

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  CodePathOptions
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  MockCallArgs
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  MockResourceArgs
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Mocks
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Options
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  RegisterPackageArgs
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  ResourceModule
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  ResourcePackage
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  SerializationOptions
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  SerializedFunction
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  SerializeFunctionArgs
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  SourcePosition

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Type Aliases

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  MockCallResult
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  MockResourceResult
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  OutputResolvers

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Variables

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  excessiveDebugOutput
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  rootPulumiStackTypeName
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  specialArchiveSig
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  specialAssetSig
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  specialOutputValueSig
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  specialResourceSig
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  specialSecretSig
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  specialSigKey
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  unknownValue

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Functions

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  allConfig
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  awaitStackRegistrations
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  cacheDynamicProviders
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  call
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  callSingle
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  computeCodePaths
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  deserializeProperties
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  deserializeProperty
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  disconnect
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  disconnectSync
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  getCallbacks
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  getConfig
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  getEngine
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  getMaximumListeners
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  getMonitor
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  getOrganization
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  getProject
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  getResource
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  getResourceModule
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  getResourcePackage
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  getRootDirectory
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  getStack
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  getStackResource
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  hasEngine
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  hasMonitor
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  invoke
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  invokeOutput
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  invokeSingle
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  invokeSingleOutput
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  isDryRun
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  isLegacyApplyEnabled
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  isRpcSecret
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  mapAliasesForRequest
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  readResource
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  registerErrorHook
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  registerInvokeTransform
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  registerPackage
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  registerResource
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  registerResourceHook
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  registerResourceModule
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  registerResourceOutputs
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  registerResourcePackage
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  registerResourceTransform
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  registerStackTransform
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  registerStackTransformation
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  requirePulumiVersion
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  resetOptions
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  resolveProperties
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  rpcKeepAlive
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  runInPulumiStack
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  serialize
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  serializeFunction
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  serializeFunctionAsync
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  serializeProperties
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  serializeProperty
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  serializeResourceProperties
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  setAllConfig
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  setConfig
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  setMockOptions
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  setMocks
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  setRootResource
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  supportsParameterization
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  suppressUnhandledGrpcRejections
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  terminateRpcs
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  transferProperties
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  unwrapRpcSecret
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  diff --git a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/modules/utils.html b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/modules/utils.html index 14b50cbc78cd..41cd8759f3bd 100644 --- a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/modules/utils.html +++ b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/modules/utils.html @@ -1 +1 @@ -utils | @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Namespace utils

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +utils | @pulumi/pulumi - v3.243.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    @pulumi/pulumi - v3.243.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Namespace utils

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      diff --git a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/types/ErrorHookFunction.html b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/types/ErrorHookFunction.html index 675e34327000..60ca129b88ae 100644 --- a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/types/ErrorHookFunction.html +++ b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/types/ErrorHookFunction.html @@ -1,3 +1,3 @@ -ErrorHookFunction | @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Type Alias ErrorHookFunction

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        ErrorHookFunction: (args: ErrorHookArgs) => boolean | Promise<boolean>

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        ErrorHookFunction is a function that can be registered as an error hook. +ErrorHookFunction | @pulumi/pulumi - v3.243.0

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        @pulumi/pulumi - v3.243.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Type Alias ErrorHookFunction

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          ErrorHookFunction: (args: ErrorHookArgs) => boolean | Promise<boolean>

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          ErrorHookFunction is a function that can be registered as an error hook. Returns true to retry the operation, false to not retry.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Type Declaration

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Type Declaration

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          diff --git a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/types/ID.html b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/types/ID.html index 9bc2658575c2..9d77826da851 100644 --- a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/types/ID.html +++ b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/types/ID.html @@ -1 +1 @@ -ID | @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Type Alias ID

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            ID: string
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +ID | @pulumi/pulumi - v3.243.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            @pulumi/pulumi - v3.243.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Type Alias ID

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              ID: string
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              diff --git a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/types/Input.html b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/types/Input.html index adc46ef64683..3bd875fcb45c 100644 --- a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/types/Input.html +++ b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/types/Input.html @@ -1,4 +1,4 @@ -Input | @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Type Alias Input<T>

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Input: T | Promise<T> | OutputInstance<T>

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Input is a property input for a resource. It may be a promptly +Input | @pulumi/pulumi - v3.243.0

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                @pulumi/pulumi - v3.243.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Type Alias Input<T>

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Input: T | Promise<T> | OutputInstance<T>

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Input is a property input for a resource. It may be a promptly available T, a promise for one, or the Output from a existing Resource.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Type Parameters

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • T
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Type Parameters

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • T
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  diff --git a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/types/Inputs.html b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/types/Inputs.html index c36bed408f3d..bffd1252e398 100644 --- a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/types/Inputs.html +++ b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/types/Inputs.html @@ -1,3 +1,3 @@ -Inputs | @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Type Alias Inputs

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Inputs: Record<string, Input<any>>

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Inputs is a map of property name to property input, one for each +Inputs | @pulumi/pulumi - v3.243.0

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    @pulumi/pulumi - v3.243.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Type Alias Inputs

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Inputs: Record<string, Input<any>>

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Inputs is a map of property name to property input, one for each resource property value.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      diff --git a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/types/InvokeTransform.html b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/types/InvokeTransform.html index 75cf93fe728f..398d6bf9714f 100644 --- a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/types/InvokeTransform.html +++ b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/types/InvokeTransform.html @@ -1,4 +1,4 @@ -InvokeTransform | @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Type Alias InvokeTransform

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        InvokeTransform: (
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            args: InvokeTransformArgs,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        ) =>
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            | Promise<InvokeTransformResult | undefined>
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            | InvokeTransformResult
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            | undefined

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        InvokeTransform is the callback signature for the transforms +InvokeTransform | @pulumi/pulumi - v3.243.0

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        @pulumi/pulumi - v3.243.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Type Alias InvokeTransform

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          InvokeTransform: (
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              args: InvokeTransformArgs,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          ) =>
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              | Promise<InvokeTransformResult | undefined>
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              | InvokeTransformResult
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              | undefined

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          InvokeTransform is the callback signature for the transforms resource option for invokes. A transform is passed the same set of inputs provided to the Invoke constructor, and can optionally return back alternate values for the args and/or opts prior to the invoke actually @@ -6,4 +6,4 @@ in place of the original call to the Invoke. If the transform returns nil, this indicates that the Invoke

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Type Declaration

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Type Declaration

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          diff --git a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/types/Lifted.html b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/types/Lifted.html index 04b880c625f4..ce772a2eed3b 100644 --- a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/types/Lifted.html +++ b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/types/Lifted.html @@ -1,4 +1,4 @@ -Lifted | @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Type Alias Lifted<T>

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Lifted: T extends string
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                ? LiftedObject<String, NonFunctionPropertyNames<String>>
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                : T extends (infer U)[]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    ? LiftedArray<U>
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    : T extends object ? LiftedObject<T, NonFunctionPropertyNames<T>> : {}

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            The Lifted type allows us to express the operation of taking a type, +Lifted | @pulumi/pulumi - v3.243.0

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            @pulumi/pulumi - v3.243.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Type Alias Lifted<T>

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Lifted: T extends string
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  ? LiftedObject<String, NonFunctionPropertyNames<String>>
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  : T extends (infer U)[]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      ? LiftedArray<U>
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      : T extends object ? LiftedObject<T, NonFunctionPropertyNames<T>> : {}

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              The Lifted type allows us to express the operation of taking a type, with potentially deeply nested objects and arrays and to then get a type with the same properties, except whose property types are now Outputs of the original property type.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              @@ -21,4 +21,4 @@
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   const o: Output<string> = ...;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              const c: Output<number> = o.apply(v => v.charCodeAt(0));
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Type Parameters

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • T
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Type Parameters

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • T
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              diff --git a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/types/LiftedArray.html b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/types/LiftedArray.html index 784de2f9f0b8..fe86cbd4c8c2 100644 --- a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/types/LiftedArray.html +++ b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/types/LiftedArray.html @@ -1,4 +1,4 @@ -LiftedArray | @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Type Alias LiftedArray<T>

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                type LiftedArray<T> = {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    length: Output<number>;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    readonly [n: number]: Output<T>;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Type Parameters

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • T

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Indexable

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                length +LiftedArray | @pulumi/pulumi - v3.243.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                @pulumi/pulumi - v3.243.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Type Alias LiftedArray<T>

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  type LiftedArray<T> = {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      length: Output<number>;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      readonly [n: number]: Output<T>;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Type Parameters

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • T

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Indexable

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  length: Output<number>

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Gets the length of the array. This is a number one higher than the highest element defined in an array.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  diff --git a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/types/LiftedObject.html b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/types/LiftedObject.html index 553c9e80c061..23075ef635d4 100644 --- a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/types/LiftedObject.html +++ b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/types/LiftedObject.html @@ -1 +1 @@ -LiftedObject | @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Type Alias LiftedObject<T, K>

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    LiftedObject: {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        [P in K]: IsStrictlyAny<T[P]> extends true
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            ? Output<any>
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            : T[P] extends OutputInstance<infer T1>
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                ? Output<T1>
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                : T[P] extends Promise<infer T2> ? Output<T2> : Output<T[P]>
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Type Parameters

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • T
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • K extends keyof T
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +LiftedObject | @pulumi/pulumi - v3.243.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    @pulumi/pulumi - v3.243.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Type Alias LiftedObject<T, K>

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      LiftedObject: {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          [P in K]: IsStrictlyAny<T[P]> extends true
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              ? Output<any>
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              : T[P] extends OutputInstance<infer T1>
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  ? Output<T1>
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  : T[P] extends Promise<infer T2> ? Output<T2> : Output<T[P]>
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Type Parameters

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • T
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • K extends keyof T
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      diff --git a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/types/Output.html b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/types/Output.html index 319bfce6c316..47329e483127 100644 --- a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/types/Output.html +++ b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/types/Output.html @@ -1,4 +1,4 @@ -Output | @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Type Alias Output<T>

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Output: OutputInstance<T> & Lifted<T>

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Output helps encode the relationship between Resources in a +Output | @pulumi/pulumi - v3.243.0

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        @pulumi/pulumi - v3.243.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Type Alias Output<T>

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Output: OutputInstance<T> & Lifted<T>

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Output helps encode the relationship between Resources in a Pulumi application. Specifically, an Output holds onto a piece of data and the resource it was generated from. An output value can then be provided when constructing new resources, allowing that new resource to know @@ -29,4 +29,4 @@

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               const o: Output<{ name: string, age: number, orders: Order[] }> = ...;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          const name : Output<string> = o.apply(v => v.name);
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          const age : Output<number> = o.apply(v => v.age);
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          const first: Output<Order> = o.apply(v => v.orders[0]);
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Type Parameters

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • T
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Type Parameters

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • T
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          diff --git a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/types/ResourceHookFunction.html b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/types/ResourceHookFunction.html index 94c1dac2b99c..e3bbdcebe643 100644 --- a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/types/ResourceHookFunction.html +++ b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/types/ResourceHookFunction.html @@ -1,2 +1,2 @@ -ResourceHookFunction | @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Type Alias ResourceHookFunction

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            ResourceHookFunction: (args: ResourceHookArgs) => void | Promise<void>

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            ResourceHookFunction is a function that can be registered as a resource hook.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Type Declaration

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +ResourceHookFunction | @pulumi/pulumi - v3.243.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            @pulumi/pulumi - v3.243.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Type Alias ResourceHookFunction

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              ResourceHookFunction: (args: ResourceHookArgs) => void | Promise<void>

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              ResourceHookFunction is a function that can be registered as a resource hook.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Type Declaration

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              diff --git a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/types/ResourceTransform.html b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/types/ResourceTransform.html index 9005a2319d55..8ce38e1cd389 100644 --- a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/types/ResourceTransform.html +++ b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/types/ResourceTransform.html @@ -1,4 +1,4 @@ -ResourceTransform | @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Type Alias ResourceTransform

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                ResourceTransform: (
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    args: ResourceTransformArgs,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                ) =>
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    | Promise<ResourceTransformResult | undefined>
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    | ResourceTransformResult
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    | undefined

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                ResourceTransform is the callback signature for the transforms +ResourceTransform | @pulumi/pulumi - v3.243.0

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                @pulumi/pulumi - v3.243.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Type Alias ResourceTransform

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  ResourceTransform: (
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      args: ResourceTransformArgs,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  ) =>
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      | Promise<ResourceTransformResult | undefined>
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      | ResourceTransformResult
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      | undefined

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  ResourceTransform is the callback signature for the transforms resource option. A transform is passed the same set of inputs provided to the Resource constructor, and can optionally return back alternate values for the props and/or opts prior to the resource actually being @@ -6,4 +6,4 @@ place of the original call to the Resource constructor. If the transform returns undefined, this indicates that the resource will not be transformed.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Type Declaration

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Type Declaration

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  diff --git a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/types/ResourceTransformation.html b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/types/ResourceTransformation.html index 4adbe5f04c62..5f832feca162 100644 --- a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/types/ResourceTransformation.html +++ b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/types/ResourceTransformation.html @@ -1,4 +1,4 @@ -ResourceTransformation | @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Type Alias ResourceTransformation

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    ResourceTransformation: (
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        args: ResourceTransformationArgs,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    ) => ResourceTransformationResult | undefined

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    ResourceTransformation is the callback signature for the +ResourceTransformation | @pulumi/pulumi - v3.243.0

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    @pulumi/pulumi - v3.243.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Type Alias ResourceTransformation

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      ResourceTransformation: (
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          args: ResourceTransformationArgs,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      ) => ResourceTransformationResult | undefined

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      ResourceTransformation is the callback signature for the transformations resource option. A transformation is passed the same set of inputs provided to the Resource constructor, and can optionally return back alternate values for the props and/or opts prior to the @@ -6,4 +6,4 @@ and opts were passed in place of the original call to the Resource constructor. If the transformation returns undefined, this indicates that the resource will not be transformed.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Type Declaration

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Type Declaration

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      diff --git a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/types/URN.html b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/types/URN.html index be4d08f77938..726ee23b1e1e 100644 --- a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/types/URN.html +++ b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/types/URN.html @@ -1 +1 @@ -URN | @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Type Alias URN

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        URN: string
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +URN | @pulumi/pulumi - v3.243.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        @pulumi/pulumi - v3.243.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Type Alias URN

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          URN: string
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          diff --git a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/types/Unwrap.html b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/types/Unwrap.html index 8e18a8c2b27f..f7e442b824b5 100644 --- a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/types/Unwrap.html +++ b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/types/Unwrap.html @@ -1,4 +1,4 @@ -Unwrap | @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Type Alias Unwrap<T>

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Unwrap: T extends Promise<infer U1>
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                ? UnwrapSimple<U1>
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                : T extends OutputInstance<infer U2> ? UnwrapSimple<U2> : UnwrapSimple<T>

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            The Unwrap type allows us to express the operation of taking a type, +Unwrap | @pulumi/pulumi - v3.243.0

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            @pulumi/pulumi - v3.243.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Type Alias Unwrap<T>

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Unwrap: T extends Promise<infer U1>
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  ? UnwrapSimple<U1>
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  : T extends OutputInstance<infer U2> ? UnwrapSimple<U2> : UnwrapSimple<T>

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              The Unwrap type allows us to express the operation of taking a type, with potentially deeply nested Promises and Outputs and to then get that same type with all the promises and outputs replaced with their wrapped type. Note that this unwrapping is "deep". So if you had:

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              @@ -16,4 +16,4 @@ Or, it should start with an output and call apply on it, passing in an async function. This will also collapse and just produce an output.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              In other words, this should not be used as the shape of an object: { a: Promise<Output<...>> }. It should always either be { a: Promise<NonOutput> } or just { a: Output<...> }.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Type Parameters

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • T
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Type Parameters

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • T
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              diff --git a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/types/UnwrapSimple.html b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/types/UnwrapSimple.html index 3f8de3249139..c4e9aaba3000 100644 --- a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/types/UnwrapSimple.html +++ b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/types/UnwrapSimple.html @@ -1,2 +1,2 @@ -UnwrapSimple | @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Type Alias UnwrapSimple<T>

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                UnwrapSimple: T extends primitive
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    ? T
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    : T extends Resource
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        ? T
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        : T extends [any, ...any[]]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            ? UnwrappedObject<T>
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            : T extends (infer U)[]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                ? UnwrappedArray<U>
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                : T extends object ? UnwrappedObject<T> : never

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Handles encountering basic types when unwrapping.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Type Parameters

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                • T
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +UnwrapSimple | @pulumi/pulumi - v3.243.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                @pulumi/pulumi - v3.243.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Type Alias UnwrapSimple<T>

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  UnwrapSimple: T extends primitive
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      ? T
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      : T extends Resource
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          ? T
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          : T extends [any, ...any[]]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              ? UnwrappedObject<T>
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              : T extends (infer U)[]
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  ? UnwrappedArray<U>
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  : T extends object ? UnwrappedObject<T> : never

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Handles encountering basic types when unwrapping.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Type Parameters

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • T
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  diff --git a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/types/UnwrappedArray.html b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/types/UnwrappedArray.html index 487fdc3c8b9a..8191892c7e51 100644 --- a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/types/UnwrappedArray.html +++ b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/types/UnwrappedArray.html @@ -1 +1 @@ -UnwrappedArray | @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Type Alias UnwrappedArray<T>

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    UnwrappedArray: Unwrap<T>[]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Type Parameters

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • T
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +UnwrappedArray | @pulumi/pulumi - v3.243.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    @pulumi/pulumi - v3.243.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Type Alias UnwrappedArray<T>

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      UnwrappedArray: Unwrap<T>[]

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Type Parameters

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      • T
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      diff --git a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/types/UnwrappedObject.html b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/types/UnwrappedObject.html index 582dba60a713..3b61c8b52382 100644 --- a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/types/UnwrappedObject.html +++ b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/types/UnwrappedObject.html @@ -1 +1 @@ -UnwrappedObject | @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Type Alias UnwrappedObject<T>

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        UnwrappedObject: { [P in keyof T]: Unwrap<T[P]> }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Type Parameters

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        • T
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +UnwrappedObject | @pulumi/pulumi - v3.243.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        @pulumi/pulumi - v3.243.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Type Alias UnwrappedObject<T>

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          UnwrappedObject: { [P in keyof T]: Unwrap<T[P]> }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Type Parameters

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          • T
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          diff --git a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/types/asset.AssetMap.html b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/types/asset.AssetMap.html index 17605ccde838..0f2f6b60464f 100644 --- a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/types/asset.AssetMap.html +++ b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/types/asset.AssetMap.html @@ -1,2 +1,2 @@ -AssetMap | @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Type Alias AssetMap

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            AssetMap: { [name: string]: Archive | Asset }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            A map of assets.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Type Declaration

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +AssetMap | @pulumi/pulumi - v3.243.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            @pulumi/pulumi - v3.243.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Type Alias AssetMap

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              AssetMap: { [name: string]: Archive | Asset }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              A map of assets.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Type Declaration

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              diff --git a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/types/automation.CancelEvent.html b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/types/automation.CancelEvent.html index f9b04bc67225..6d23110564e4 100644 --- a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/types/automation.CancelEvent.html +++ b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/types/automation.CancelEvent.html @@ -1,3 +1,3 @@ -CancelEvent | @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Type Alias CancelEvent

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                CancelEvent: {}

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                CancelEvent is emitted when the user initiates a cancellation of the update in progress, or +CancelEvent | @pulumi/pulumi - v3.243.0

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                @pulumi/pulumi - v3.243.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Type Alias CancelEvent

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  CancelEvent: {}

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  CancelEvent is emitted when the user initiates a cancellation of the update in progress, or the update successfully completes.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Type Declaration

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Type Declaration

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      diff --git a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/types/automation.ConfigMap.html b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/types/automation.ConfigMap.html index d9280c764de2..22e1540cfd62 100644 --- a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/types/automation.ConfigMap.html +++ b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/types/automation.ConfigMap.html @@ -1,2 +1,2 @@ -ConfigMap | @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Type Alias ConfigMap

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        ConfigMap: { [key: string]: ConfigValue }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        A map of configuration values.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Type Declaration

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +ConfigMap | @pulumi/pulumi - v3.243.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        @pulumi/pulumi - v3.243.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Type Alias ConfigMap

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          ConfigMap: { [key: string]: ConfigValue }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          A map of configuration values.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Type Declaration

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          diff --git a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/types/automation.OpMap.html b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/types/automation.OpMap.html index dbe1a33ff7c0..732443ed206c 100644 --- a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/types/automation.OpMap.html +++ b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/types/automation.OpMap.html @@ -1,2 +1,2 @@ -OpMap | @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Type Alias OpMap

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            OpMap: { [key in OpType]?: number }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            A map of operation types and their corresponding counts.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +OpMap | @pulumi/pulumi - v3.243.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            @pulumi/pulumi - v3.243.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Type Alias OpMap

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              OpMap: { [key in OpType]?: number }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              A map of operation types and their corresponding counts.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              diff --git a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/types/automation.OpType.html b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/types/automation.OpType.html index aaf8cf84e860..97fa36b2284d 100644 --- a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/types/automation.OpType.html +++ b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/types/automation.OpType.html @@ -1,2 +1,2 @@ -OpType | @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Type Alias OpType

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                OpType:
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    | "same"
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    | "create"
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    | "update"
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    | "delete"
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    | "replace"
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    | "create-replacement"
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    | "delete-replaced"
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    | "read"
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    | "read-replacement"
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    | "refresh"
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    | "discard"
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    | "discard-replaced"
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    | "remove-pending-replace"
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    | "import"
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    | "import-replacement"

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                The granular CRUD operation performed on a particular resource during an update.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +OpType | @pulumi/pulumi - v3.243.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                @pulumi/pulumi - v3.243.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Type Alias OpType

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  OpType:
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      | "same"
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      | "create"
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      | "update"
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      | "delete"
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      | "replace"
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      | "create-replacement"
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      | "delete-replaced"
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      | "read"
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      | "read-replacement"
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      | "refresh"
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      | "discard"
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      | "discard-replaced"
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      | "remove-pending-replace"
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      | "import"
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      | "import-replacement"

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The granular CRUD operation performed on a particular resource during an update.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  diff --git a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/types/automation.OutputMap.html b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/types/automation.OutputMap.html index 748253304a82..f91307691a65 100644 --- a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/types/automation.OutputMap.html +++ b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/types/automation.OutputMap.html @@ -1,3 +1,3 @@ -OutputMap | @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Type Alias OutputMap

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    OutputMap: { [key: string]: OutputValue }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    A set of outputs, keyed by name, that might be returned by a Pulumi program +OutputMap | @pulumi/pulumi - v3.243.0

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    @pulumi/pulumi - v3.243.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Type Alias OutputMap

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      OutputMap: { [key: string]: OutputValue }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      A set of outputs, keyed by name, that might be returned by a Pulumi program as part of a stack operation.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Type Declaration

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Type Declaration

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      diff --git a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/types/automation.PluginKind.html b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/types/automation.PluginKind.html index 3582b4d47ba9..63c05c2b66da 100644 --- a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/types/automation.PluginKind.html +++ b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/types/automation.PluginKind.html @@ -1 +1 @@ -PluginKind | @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Type Alias PluginKind

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        PluginKind: "analyzer" | "language" | "resource"
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +PluginKind | @pulumi/pulumi - v3.243.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        @pulumi/pulumi - v3.243.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Type Alias PluginKind

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          PluginKind: "analyzer" | "language" | "resource"
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          diff --git a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/types/automation.ProjectRuntime.html b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/types/automation.ProjectRuntime.html index 156440ffeefd..8b78fe8dd603 100644 --- a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/types/automation.ProjectRuntime.html +++ b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/types/automation.ProjectRuntime.html @@ -1,2 +1,2 @@ -ProjectRuntime | @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Type Alias ProjectRuntime

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            ProjectRuntime: "nodejs" | "go" | "python" | "dotnet"

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Supported Pulumi program language runtimes.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +ProjectRuntime | @pulumi/pulumi - v3.243.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            @pulumi/pulumi - v3.243.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Type Alias ProjectRuntime

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              ProjectRuntime: "nodejs" | "go" | "python" | "dotnet"

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Supported Pulumi program language runtimes.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              diff --git a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/types/automation.PulumiFn.html b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/types/automation.PulumiFn.html index a2d7ff0a865a..89bd5624bed2 100644 --- a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/types/automation.PulumiFn.html +++ b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/types/automation.PulumiFn.html @@ -1,2 +1,2 @@ -PulumiFn | @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Type Alias PulumiFn

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                PulumiFn: () => Promise<Record<string, any> | void>

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                A Pulumi program as an inline function (in process).

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Type Declaration

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • (): Promise<Record<string, any> | void>
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  • Returns Promise<Record<string, any> | void>

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +PulumiFn | @pulumi/pulumi - v3.243.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                @pulumi/pulumi - v3.243.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Type Alias PulumiFn

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  PulumiFn: () => Promise<Record<string, any> | void>

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  A Pulumi program as an inline function (in process).

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Type Declaration

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • (): Promise<Record<string, any> | void>
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    • Returns Promise<Record<string, any> | void>

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  diff --git a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/types/automation.RawJSON.html b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/types/automation.RawJSON.html index ba80cb345fc9..b3c22537ee3c 100644 --- a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/types/automation.RawJSON.html +++ b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/types/automation.RawJSON.html @@ -1,2 +1,2 @@ -RawJSON | @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Type Alias RawJSON

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    RawJSON: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    An unstructured JSON string used for back-compat with versioned APIs (such as Deployment).

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +RawJSON | @pulumi/pulumi - v3.243.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    @pulumi/pulumi - v3.243.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Type Alias RawJSON

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      RawJSON: string

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      An unstructured JSON string used for back-compat with versioned APIs (such as Deployment).

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      diff --git a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/types/automation.StackSettingsConfigValue.html b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/types/automation.StackSettingsConfigValue.html index 57dada2960b3..b6d6e82789ee 100644 --- a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/types/automation.StackSettingsConfigValue.html +++ b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/types/automation.StackSettingsConfigValue.html @@ -1,2 +1,2 @@ -StackSettingsConfigValue | @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Type Alias StackSettingsConfigValue

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        StackSettingsConfigValue: string | StackSettingsSecureConfigValue | any

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        A stack configuration entry.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +StackSettingsConfigValue | @pulumi/pulumi - v3.243.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        @pulumi/pulumi - v3.243.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Type Alias StackSettingsConfigValue

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          StackSettingsConfigValue: string | StackSettingsSecureConfigValue | any

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          A stack configuration entry.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          diff --git a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/types/automation.TagMap.html b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/types/automation.TagMap.html index e66ccbd80f9a..3c6c9bdada8c 100644 --- a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/types/automation.TagMap.html +++ b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/types/automation.TagMap.html @@ -1,3 +1,3 @@ -TagMap | @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Type Alias TagMap

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            TagMap: { [key: string]: string }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            A TagMap is a key-value map of tag metadata associated with a +TagMap | @pulumi/pulumi - v3.243.0

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            @pulumi/pulumi - v3.243.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Type Alias TagMap

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              TagMap: { [key: string]: string }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              A TagMap is a key-value map of tag metadata associated with a Stack.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Type Declaration

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • [key: string]: string
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Type Declaration

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              • [key: string]: string
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              diff --git a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/types/automation.UpdateKind.html b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/types/automation.UpdateKind.html index 463d5274858f..046780006ef3 100644 --- a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/types/automation.UpdateKind.html +++ b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/types/automation.UpdateKind.html @@ -1,2 +1,2 @@ -UpdateKind | @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Type Alias UpdateKind

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                UpdateKind: "update" | "preview" | "refresh" | "rename" | "destroy" | "import"

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                The kind of update that was performed on the stack.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +UpdateKind | @pulumi/pulumi - v3.243.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                @pulumi/pulumi - v3.243.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Type Alias UpdateKind

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  UpdateKind: "update" | "preview" | "refresh" | "rename" | "destroy" | "import"

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The kind of update that was performed on the stack.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  diff --git a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/types/automation.UpdateResult.html b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/types/automation.UpdateResult.html index 13ef2e668a85..3163bc4e9fa7 100644 --- a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/types/automation.UpdateResult.html +++ b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/types/automation.UpdateResult.html @@ -1,2 +1,2 @@ -UpdateResult | @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Type Alias UpdateResult

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    UpdateResult: "not-started" | "in-progress" | "succeeded" | "failed"

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Represents the current status of a given update.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +UpdateResult | @pulumi/pulumi - v3.243.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    @pulumi/pulumi - v3.243.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Type Alias UpdateResult

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      UpdateResult: "not-started" | "in-progress" | "succeeded" | "failed"

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Represents the current status of a given update.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      diff --git a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/types/runtime.MockCallResult.html b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/types/runtime.MockCallResult.html index dba164e5aa98..0f7af7210600 100644 --- a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/types/runtime.MockCallResult.html +++ b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/types/runtime.MockCallResult.html @@ -1,2 +1,2 @@ -MockCallResult | @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Type Alias MockCallResult

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        MockCallResult: Record<string, any>

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        MockCallResult is the result of a call mock.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        +MockCallResult | @pulumi/pulumi - v3.243.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        @pulumi/pulumi - v3.243.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Type Alias MockCallResult

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          MockCallResult: Record<string, any>

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          MockCallResult is the result of a call mock.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          diff --git a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/types/runtime.MockResourceResult.html b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/types/runtime.MockResourceResult.html index ccbeb99c47ec..90e06f255792 100644 --- a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/types/runtime.MockResourceResult.html +++ b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/types/runtime.MockResourceResult.html @@ -1,6 +1,6 @@ -MockResourceResult | @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Type Alias MockResourceResult

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            MockResourceResult is the result of a new resource mock, returning a +MockResourceResult | @pulumi/pulumi - v3.243.0

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            @pulumi/pulumi - v3.243.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Type Alias MockResourceResult

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              MockResourceResult is the result of a new resource mock, returning a physical identifier and the output properties for the resource being constructed.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              type MockResourceResult = {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  id: string | undefined;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  state: Record<string, any>;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              id +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              type MockResourceResult = {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  id: string | undefined;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  state: Record<string, any>;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Index

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              id: string | undefined
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              state: Record<string, any>
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Properties

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              id: string | undefined
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              state: Record<string, any>
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              diff --git a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/types/runtime.OutputResolvers.html b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/types/runtime.OutputResolvers.html index 8a456bdad15f..4d881741e435 100644 --- a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/types/runtime.OutputResolvers.html +++ b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/types/runtime.OutputResolvers.html @@ -1 +1 @@ -OutputResolvers | @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Type Alias OutputResolvers

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                OutputResolvers: Record<
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    string,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    (
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        value: any,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        isStable: boolean,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        isSecret: boolean,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        deps?: Resource[],
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        err?: Error,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    ) => void,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                >
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +OutputResolvers | @pulumi/pulumi - v3.243.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                @pulumi/pulumi - v3.243.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Type Alias OutputResolvers

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  OutputResolvers: Record<
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      string,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      (
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          value: any,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          isStable: boolean,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          isSecret: boolean,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          deps?: Resource[],
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          err?: Error,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      ) => void,
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  >
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  diff --git a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/variables/Output.html b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/variables/Output.html index a187aa1d1e52..514b0255efcf 100644 --- a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/variables/Output.html +++ b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/variables/Output.html @@ -1 +1 @@ -Output | @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Variable Output

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    +Output | @pulumi/pulumi - v3.243.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    @pulumi/pulumi - v3.243.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Variable Output

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      diff --git a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/variables/rootStackResource.html b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/variables/rootStackResource.html index 5828bd2385ba..39bf0da9b188 100644 --- a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/variables/rootStackResource.html +++ b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/variables/rootStackResource.html @@ -1,4 +1,4 @@ -rootStackResource | @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Variable rootStackResourceConst

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        rootStackResource: Resource = ...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        A constant to represent the "root stack" resource for a Pulumi application. +rootStackResource | @pulumi/pulumi - v3.243.0

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        @pulumi/pulumi - v3.243.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Variable rootStackResourceConst

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          rootStackResource: Resource = ...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          A constant to represent the "root stack" resource for a Pulumi application. The purpose of this is solely to make it easy to write an Alias like so:

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          aliases: [{ parent: rootStackResource }].

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          @@ -9,4 +9,4 @@

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          However, the former form is preferable as it is more self-descriptive, while the latter may look a bit confusing and may incorrectly look like something that could be removed without changing semantics.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          diff --git a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/variables/runtime.excessiveDebugOutput.html b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/variables/runtime.excessiveDebugOutput.html index 5442c9f9691d..c6c7027bd072 100644 --- a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/variables/runtime.excessiveDebugOutput.html +++ b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/variables/runtime.excessiveDebugOutput.html @@ -1,3 +1,3 @@ -excessiveDebugOutput | @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Variable excessiveDebugOutputConst

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            excessiveDebugOutput: boolean = false

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            excessiveDebugOutput enables, well, pretty excessive debug output pertaining +excessiveDebugOutput | @pulumi/pulumi - v3.243.0

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            @pulumi/pulumi - v3.243.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Variable excessiveDebugOutputConst

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              excessiveDebugOutput: boolean = false

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              excessiveDebugOutput enables, well, pretty excessive debug output pertaining to resources and properties.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              diff --git a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/variables/runtime.rootPulumiStackTypeName.html b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/variables/runtime.rootPulumiStackTypeName.html index 8d951e87c48d..6ad86435c99b 100644 --- a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/variables/runtime.rootPulumiStackTypeName.html +++ b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/variables/runtime.rootPulumiStackTypeName.html @@ -1,4 +1,4 @@ -rootPulumiStackTypeName | @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Variable rootPulumiStackTypeNameConst

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                rootPulumiStackTypeName: "pulumi:pulumi:Stack"

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                The type name that should be used to construct the root component in the tree +rootPulumiStackTypeName | @pulumi/pulumi - v3.243.0

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                @pulumi/pulumi - v3.243.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Variable rootPulumiStackTypeNameConst

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  rootPulumiStackTypeName: "pulumi:pulumi:Stack"

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  The type name that should be used to construct the root component in the tree of Pulumi resources allocated by a deployment. This must be kept up to date with github.com/pulumi/pulumi/sdk/v3/go/common/resource/stack.RootStackType.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  diff --git a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/variables/runtime.specialArchiveSig.html b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/variables/runtime.specialArchiveSig.html index ca8235b19388..5d771f424414 100644 --- a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/variables/runtime.specialArchiveSig.html +++ b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/variables/runtime.specialArchiveSig.html @@ -1,4 +1,4 @@ -specialArchiveSig | @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Variable specialArchiveSigConst

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    specialArchiveSig: "0def7320c3a5731c473e5ecbe6d01bc7"

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    specialArchiveSig is a randomly assigned hash used to identify +specialArchiveSig | @pulumi/pulumi - v3.243.0

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    @pulumi/pulumi - v3.243.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Variable specialArchiveSigConst

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      specialArchiveSig: "0def7320c3a5731c473e5ecbe6d01bc7"

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      specialArchiveSig is a randomly assigned hash used to identify archives in maps.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      sdk/go/common/resource/asset.go.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      diff --git a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/variables/runtime.specialAssetSig.html b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/variables/runtime.specialAssetSig.html index 5f3924c30748..4f7dff5e6dfc 100644 --- a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/variables/runtime.specialAssetSig.html +++ b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/variables/runtime.specialAssetSig.html @@ -1,4 +1,4 @@ -specialAssetSig | @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Variable specialAssetSigConst

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        specialAssetSig: "c44067f5952c0a294b673a41bacd8c17"

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        specialAssetSig is a randomly assigned hash used to identify assets +specialAssetSig | @pulumi/pulumi - v3.243.0

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        @pulumi/pulumi - v3.243.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Variable specialAssetSigConst

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          specialAssetSig: "c44067f5952c0a294b673a41bacd8c17"

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          specialAssetSig is a randomly assigned hash used to identify assets in maps.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          sdk/go/common/resource/asset.go.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          diff --git a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/variables/runtime.specialOutputValueSig.html b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/variables/runtime.specialOutputValueSig.html index 6ada3cf12a53..61ac9a9ac42a 100644 --- a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/variables/runtime.specialOutputValueSig.html +++ b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/variables/runtime.specialOutputValueSig.html @@ -1,4 +1,4 @@ -specialOutputValueSig | @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Variable specialOutputValueSigConst

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            specialOutputValueSig: "d0e6a833031e9bbcd3f4e8bde6ca49a4"

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            specialOutputValueSig is a randomly assigned hash used to identify +specialOutputValueSig | @pulumi/pulumi - v3.243.0

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            @pulumi/pulumi - v3.243.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Variable specialOutputValueSigConst

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              specialOutputValueSig: "d0e6a833031e9bbcd3f4e8bde6ca49a4"

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              specialOutputValueSig is a randomly assigned hash used to identify outputs in maps.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              sdk/go/common/resource/properties.go.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              diff --git a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/variables/runtime.specialResourceSig.html b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/variables/runtime.specialResourceSig.html index 665e95cea42b..f78092ca696a 100644 --- a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/variables/runtime.specialResourceSig.html +++ b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/variables/runtime.specialResourceSig.html @@ -1,4 +1,4 @@ -specialResourceSig | @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Variable specialResourceSigConst

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                specialResourceSig: "5cf8f73096256a8f31e491e813e4eb8e"

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                specialResourceSig is a randomly assigned hash used to identify +specialResourceSig | @pulumi/pulumi - v3.243.0

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                @pulumi/pulumi - v3.243.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Variable specialResourceSigConst

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  specialResourceSig: "5cf8f73096256a8f31e491e813e4eb8e"

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  specialResourceSig is a randomly assigned hash used to identify resources in maps.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  sdk/go/common/resource/properties.go.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  diff --git a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/variables/runtime.specialSecretSig.html b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/variables/runtime.specialSecretSig.html index 500bdd1d8a89..2242d6b64256 100644 --- a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/variables/runtime.specialSecretSig.html +++ b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/variables/runtime.specialSecretSig.html @@ -1,4 +1,4 @@ -specialSecretSig | @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    Variable specialSecretSigConst

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    specialSecretSig: "1b47061264138c4ac30d75fd1eb44270"

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    specialSecretSig is a randomly assigned hash used to identify secrets +specialSecretSig | @pulumi/pulumi - v3.243.0

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    @pulumi/pulumi - v3.243.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      Variable specialSecretSigConst

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      specialSecretSig: "1b47061264138c4ac30d75fd1eb44270"

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      specialSecretSig is a randomly assigned hash used to identify secrets in maps.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      sdk/go/common/resource/properties.go.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      diff --git a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/variables/runtime.specialSigKey.html b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/variables/runtime.specialSigKey.html index 2181662418b0..8a99c1709b35 100644 --- a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/variables/runtime.specialSigKey.html +++ b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/variables/runtime.specialSigKey.html @@ -1,4 +1,4 @@ -specialSigKey | @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Variable specialSigKeyConst

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        specialSigKey: "4dabf18193072939515e22adb298388d"

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        specialSigKey is sometimes used to encode type identity inside of a +specialSigKey | @pulumi/pulumi - v3.243.0

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        @pulumi/pulumi - v3.243.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          Variable specialSigKeyConst

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          specialSigKey: "4dabf18193072939515e22adb298388d"

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          specialSigKey is sometimes used to encode type identity inside of a map.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          sdk/go/common/resource/properties.go.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          diff --git a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/variables/runtime.unknownValue.html b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/variables/runtime.unknownValue.html index 58c47a0faab9..3a8819bf555b 100644 --- a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/variables/runtime.unknownValue.html +++ b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/variables/runtime.unknownValue.html @@ -1,2 +1,2 @@ -unknownValue | @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Variable unknownValueConst

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            unknownValue: "04da6b54-80e4-46f7-96ec-b56ff0331ba9"

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            Unknown values are encoded as a distinguished string value.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            +unknownValue | @pulumi/pulumi - v3.243.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            @pulumi/pulumi - v3.243.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Variable unknownValueConst

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              unknownValue: "04da6b54-80e4-46f7-96ec-b56ff0331ba9"

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              Unknown values are encoded as a distinguished string value.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              +
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              diff --git a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/variables/unknown.html b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/variables/unknown.html index b821b7267aa2..19359dea7959 100644 --- a/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/variables/unknown.html +++ b/static-prebuilt/docs/reference/pkg/nodejs/pulumi/pulumi/variables/unknown.html @@ -1,2 +1,2 @@ -unknown | @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              @pulumi/pulumi - v3.242.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Variable unknownConst

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                unknown: Unknown = ...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                unknown is the singleton Unknown value.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                -
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                +unknown | @pulumi/pulumi - v3.243.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                @pulumi/pulumi - v3.243.0
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Preparing search index...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  Variable unknownConst

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  unknown: Unknown = ...

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  unknown is the singleton Unknown value.

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  +